You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the representation of the IpAddress type contains a byte-string. Converting the byte-string to an ip-address would make log output much more readable.
The following line would break the API with the superclass Type:
IpAddress('192.168.1.1')
becuase the superclass requires a bytes object as argument. The following would keep a consistent API but would make output quite long:
IpAddress.from_string('192.168.1.1')
Alternatively a non-executable form may be used:
<IpAddress 192.168.1.1>
The text was updated successfully, but these errors were encountered:
Currently the representation of the IpAddress type contains a byte-string. Converting the byte-string to an ip-address would make log output much more readable.
The following line would break the API with the superclass
Type
:becuase the superclass requires a bytes object as argument. The following would keep a consistent API but would make output quite long:
Alternatively a non-executable form may be used:
The text was updated successfully, but these errors were encountered: