Issue #20253: Fixed a typo in the ipaddress docs that advertised an

illegal attribute name.  Found by INADA Naoki.
This commit is contained in:
Zachary Ware 2014-01-14 09:09:48 -06:00
parent 26d5fab8c8
commit 9774ce0cab
2 changed files with 5 additions and 2 deletions

View File

@ -405,7 +405,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.
@ -561,7 +561,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

View File

@ -302,6 +302,9 @@ Tests
Documentation
-------------
- Issue #20253: Fixed a typo in the ipaddress docs that advertised an
illegal attribute name. Found by INADA Naoki.
- Issue #19963: Document that importlib.import_module() no longer requires
importing parent packages separately.