mirror of
https://github.com/python/cpython.git
synced 2026-05-06 04:37:33 -04:00
[3.14] gh-87245: Improve IPv6Address.ipv4_mapped documentation (GH-92572) (#149360)
gh-87245: Improve IPv6Address.ipv4_mapped documentation (GH-92572)
Avoid the phrasing ‘starting with ::FFFF/96’, which is confusing since
it seems to mix a prefix and a range. Instead, make it clear what the
actual range is, and refer to the relevant RFC.
Closes GH-87245.
(cherry picked from commit 7aedd0a6c6)
Co-authored-by: wouter bolsterlee <wouter@bolsterl.ee>
This commit is contained in:
committed by
GitHub
parent
0c89d36af8
commit
62f5d946b2
@@ -369,9 +369,9 @@ write code that handles both IP versions correctly. Address objects are
|
||||
|
||||
.. attribute:: ipv4_mapped
|
||||
|
||||
For addresses that appear to be IPv4 mapped addresses (starting with
|
||||
``::FFFF/96``), this property will report the embedded IPv4 address.
|
||||
For any other address, this property will be ``None``.
|
||||
For addresses that appear to be IPv4 mapped addresses in the range
|
||||
``::FFFF:0:0/96`` as defined by :RFC:`4291`, this property reports the
|
||||
embedded IPv4 address. For any other address, this property will be ``None``.
|
||||
|
||||
.. attribute:: scope_id
|
||||
|
||||
|
||||
Reference in New Issue
Block a user