]> granicus.if.org Git - python/commitdiff
Fix: >= and so on are usually called "comparison operators", not "logical operators...
authorGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 17:23:57 +0000 (19:23 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 6 Oct 2013 17:23:57 +0000 (19:23 +0200)
Doc/library/ipaddress.rst

index ed2321739a353dddaec8d4c108392346ac4166a6..769af72769305b0697b5136710f38a7c690d4963 100644 (file)
@@ -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')