diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2015-06-15 00:35:37 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2015-06-15 00:35:37 (GMT) |
commit | b4760efbadb1a780719bb62398949d5d6ef0605e (patch) | |
tree | d90781545f69d66cd3e7395b9926e2af459f2f56 /Doc/library/ipaddress.rst | |
parent | 1c90670bc2eaf55517b85d99d206d328a714b828 (diff) | |
download | cpython-b4760efbadb1a780719bb62398949d5d6ef0605e.zip cpython-b4760efbadb1a780719bb62398949d5d6ef0605e.tar.gz cpython-b4760efbadb1a780719bb62398949d5d6ef0605e.tar.bz2 |
Back porting changeset db302b88fdb6 to 3.4 branch, which fixed multiple documentation typos.
Related Issues:
#issue21528
#issue24453
Diffstat (limited to 'Doc/library/ipaddress.rst')
-rw-r--r-- | Doc/library/ipaddress.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst index ca87980..99b5bea 100644 --- a/Doc/library/ipaddress.rst +++ b/Doc/library/ipaddress.rst @@ -103,7 +103,7 @@ write code that handles both IP versions correctly. 1. A string in decimal-dot notation, consisting of four decimal integers in the inclusive range 0-255, separated by dots (e.g. ``192.168.0.1``). Each integer represents an octet (byte) in the address. Leading zeroes are - tolerated only for values less then 8 (as there is no ambiguity + tolerated only for values less than 8 (as there is no ambiguity between the decimal and octal interpretations of such strings). 2. An integer that fits into 32 bits. 3. An integer packed into a :class:`bytes` object of length 4 (most |