diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-01-14 15:10:33 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-01-14 15:10:33 (GMT) |
commit | 5c15424aa96acce4f136b74a7bd2afaafa9d9651 (patch) | |
tree | 30dfe6476f9a0c19caae7836c1d85cebbfd62fc5 | |
parent | 1bef5c6cc8a8d40816541ef477f03d614415f1f9 (diff) | |
parent | 9774ce0cabb0811b0eac146f0051787cf25ee76a (diff) | |
download | cpython-5c15424aa96acce4f136b74a7bd2afaafa9d9651.zip cpython-5c15424aa96acce4f136b74a7bd2afaafa9d9651.tar.gz cpython-5c15424aa96acce4f136b74a7bd2afaafa9d9651.tar.bz2 |
Closes #20253: Merge typo fix
-rw-r--r-- | Doc/library/ipaddress.rst | 4 | ||||
-rw-r--r-- | Misc/NEWS | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst index 826e4aa..7c62750 100644 --- a/Doc/library/ipaddress.rst +++ b/Doc/library/ipaddress.rst @@ -414,7 +414,7 @@ so to avoid duplication they are only documented for :class:`IPv4Network`. The broadcast address for the network. Packets sent to the broadcast address should be received by every host on the network. - .. attribute:: host mask + .. attribute:: hostmask The host mask, as a string. @@ -570,7 +570,7 @@ so to avoid duplication they are only documented for :class:`IPv4Network`. .. attribute:: is_link_local .. attribute:: network_address .. attribute:: broadcast_address - .. attribute:: host mask + .. attribute:: hostmask .. attribute:: with_prefixlen .. attribute:: compressed .. attribute:: exploded @@ -475,6 +475,9 @@ Build Documentation ------------- +- Issue #20253: Fixed a typo in the ipaddress docs that advertised an + illegal attribute name. Found by INADA Naoki. + - Issue #18840: Introduce the json module in the tutorial, and deemphasize the pickle module. |