We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The IPv6 address is 2002::1. So why does packednot include the inner "2" in the IPv6 address?
2002::1
packed
>>> >>> ip = ipaddress.ip_address('2002::1') >>> ip IPv6Address('2002::1') >>> ip.packed b' \x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01' >>>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The IPv6 address is
2002::1
. So why doespacked
not include the inner "2" in the IPv6 address?The text was updated successfully, but these errors were encountered: