This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author berker.peksag
Recipients berker.peksag, eric.smith, ncoghlan, pmoody, r.david.murray, rluethi, santoso.wijaya
Date 2014-05-24.01:14:33
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1400894074.34.0.533298774734.issue21386@psf.upfronthosting.co.za>
In-reply-to
Content
+    @property
+    def is_global(self):
+        return (not self in IPv4Network('100.64.0.0/10') and

Can IPv4Network('100.64.0.0/10') moved to the _IPv4Constants class (e.g. _IPv4Constants._global_network = IPv4Network('100.64.0.0/10')) after http://hg.python.org/cpython/rev/e5d963cb6afc (see also issue 21513)

+                not self.is_private)
History
Date User Action Args
2014-05-24 01:14:34berker.peksagsetrecipients: + berker.peksag, ncoghlan, eric.smith, pmoody, r.david.murray, santoso.wijaya, rluethi
2014-05-24 01:14:34berker.peksagsetmessageid: <1400894074.34.0.533298774734.issue21386@psf.upfronthosting.co.za>
2014-05-24 01:14:34berker.peksaglinkissue21386 messages
2014-05-24 01:14:33berker.peksagcreate