diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-08-05 12:52:38 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-08-05 12:52:38 (GMT) |
commit | 31096a94e71779af9c768ac714aaef8c4db53e10 (patch) | |
tree | 13c724491bcfc0e6f15c8458514fa7faa74ad283 /Doc | |
parent | 043540088ae75f79179de2fe4ec147674bcc2a5f (diff) | |
download | cpython-31096a94e71779af9c768ac714aaef8c4db53e10.zip cpython-31096a94e71779af9c768ac714aaef8c4db53e10.tar.gz cpython-31096a94e71779af9c768ac714aaef8c4db53e10.tar.bz2 |
Issue #14814: Attempt to clarify network address and broadcast address for less experienced users
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ipaddress.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst index d555116..fea1724 100644 --- a/Doc/library/ipaddress.rst +++ b/Doc/library/ipaddress.rst @@ -390,11 +390,13 @@ so to avoid duplication they are only documented for :class:`IPv4Network`. .. attribute:: network_address - The broadcast address for the network. + The network address for the network. The network address and the + prefix length together uniquely define a network. .. attribute:: broadcast_address - The broadcast address for the network. + The broadcast address for the network. Packets sent to the broadcast + address should be received by every host on the network. .. attribute:: host mask |