8000 gh-109466: Add ipv6_mapped property to IPv4Address by csm10495 · Pull Request #109467 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-109466: Add ipv6_mapped property to IPv4Address #109467

New issue

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

Merged
merged 10 commits into from
Nov 5, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Docstring update.
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
  • Loading branch information
gpshead and hugovk authored Nov 5, 2023
commit d78bf5aba998aeef3fc1fcaa860d96b84b2b0cc2
2 changes: 1 addition & 1 deletion Lib/ipaddress.py
Original file line number Diff line number Diff line change
Expand Up @@ -1391,7 +1391,7 @@ def is_link_local(self):

@property
def ipv6_mapped(self):
"""Return the IPv6 mapped address.
"""Return the IPv4-mapped IPv6 address.

Returns:
The IPv4-mapped IPv6 address per RFC 4291.
Expand Down
0