summaryrefslogtreecommitdiffstats
path: root/Doc/library/ipaddress.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2013-10-06 17:23:57 (GMT)
committerGeorg Brandl <georg@python.org>2013-10-06 17:23:57 (GMT)
commit9ad417ee816e0ccffe7dfb66142e88fd8091febd (patch)
tree9f854f87cf7b4bec7b4aa0ec20d918133c4f8e83 /Doc/library/ipaddress.rst
parentac39addd72ec5184684d7fd9f8b0333bc12ae0b7 (diff)
downloadcpython-9ad417ee816e0ccffe7dfb66142e88fd8091febd.zip
cpython-9ad417ee816e0ccffe7dfb66142e88fd8091febd.tar.gz
cpython-9ad417ee816e0ccffe7dfb66142e88fd8091febd.tar.bz2
Fix: >= and so on are usually called "comparison operators", not "logical operators". Found by Tom Kalt on docs@.
Diffstat (limited to 'Doc/library/ipaddress.rst')
-rw-r--r--Doc/library/ipaddress.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst
index ed23217..769af72 100644
--- a/Doc/library/ipaddress.rst
+++ b/Doc/library/ipaddress.rst
@@ -282,10 +282,10 @@ only be applied between compatible objects (i.e. IPv4 with IPv4, IPv6 with
IPv6).
-Logical operators
-"""""""""""""""""
+Comparison operators
+""""""""""""""""""""
-Address objects can be compared with the usual set of logical operators. Some
+Address objects can be compared with the usual set of comparison operators. Some
examples::
>>> IPv4Address('127.0.0.2') > IPv4Address('127.0.0.1')