File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1- version = " 1.0 .*"
1+ version = " 1.1 .*"
22upstream_repository = " https://github.com/drkjam/netaddr"
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ from netaddr.strategy.eui64 import (
5353 eui64_unix_expanded as eui64_unix_expanded ,
5454 valid_str as valid_eui64 ,
5555)
56- from netaddr .strategy .ipv4 import valid_str as valid_ipv4
56+ from netaddr .strategy .ipv4 import expand_partial_address as expand_partial_ipv4_address , valid_str as valid_ipv4
5757from netaddr .strategy .ipv6 import (
5858 ipv6_compact as ipv6_compact ,
5959 ipv6_full as ipv6_full ,
@@ -116,6 +116,7 @@ __all__ = [
116116 "eui64_bare" ,
117117 "valid_eui64" ,
118118 "SubnetSplitter" ,
119+ "expand_partial_ipv4_address" ,
119120]
120121
121122__version__ : str
Original file line number Diff line number Diff line change 1- from netaddr import *
1+ from typing import Any
2+
3+ SHELL_NAMESPACE : dict [str , Any ]
4+ ASCII_ART_LOGO : str
25
36def main () -> None : ...
You can’t perform that action at this time.
0 commit comments