From: Georg Brandl Date: Sun, 6 Oct 2013 17:23:57 +0000 (+0200) Subject: Fix: >= and so on are usually called "comparison operators", not "logical operators... X-Git-Tag: v3.4.0a4~222^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9ad417ee816e0ccffe7dfb66142e88fd8091febd;p=thirdparty%2FPython%2Fcpython.git Fix: >= and so on are usually called "comparison operators", not "logical operators". Found by Tom Kalt on docs@. --- diff --git a/Doc/library/ipaddress.rst b/Doc/library/ipaddress.rst index ed2321739a35..769af7276930 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')