Commit 9ad417ee authored by Georg Brandl's avatar Georg Brandl

Fix: >= and so on are usually called "comparison operators", not "logical...

Fix: >= and so on are usually called "comparison operators", not "logical operators". Found by Tom Kalt on docs@.
parent ac39addd
...@@ -282,10 +282,10 @@ only be applied between compatible objects (i.e. IPv4 with IPv4, IPv6 with ...@@ -282,10 +282,10 @@ only be applied between compatible objects (i.e. IPv4 with IPv4, IPv6 with
IPv6). 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:: examples::
>>> IPv4Address('127.0.0.2') > IPv4Address('127.0.0.1') >>> IPv4Address('127.0.0.2') > IPv4Address('127.0.0.1')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment