From 9ad417ee816e0ccffe7dfb66142e88fd8091febd Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 6 Oct 2013 19:23:57 +0200 Subject: Fix: >= and so on are usually called "comparison operators", not "logical operators". Found by Tom Kalt on docs@. --- Doc/library/ipaddress.rst | 6 +++--- 1 file 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') -- cgit v0.12