[issue41290] ipaddress module doesn't recognize 100.64.0.0/10 as a private network

2020-07-13 Thread SilentGhost
SilentGhost added the comment: This was an intentional change, see #17400 and specifically commit 49e012e5492c1c70690ab72a8d03a980047148b5; so I'm going to close this issue as not a bug. -- nosy: +SilentGhost resolution: -> not a bug stage: -> resolved status: open -> closed _

[issue41290] ipaddress module doesn't recognize 100.64.0.0/10 as a private network

2020-07-13 Thread SilentGhost
Change by SilentGhost : -- components: -Extension Modules nosy: +pitrou versions: -Python 3.5, Python 3.6 ___ Python tracker ___ _

[issue41290] ipaddress module doesn't recognize 100.64.0.0/10 as a private network

2020-07-13 Thread Allayna Wilson
New submission from Allayna Wilson : import IPv4Address as n4 In [10]: n4('100.64.0.0/24').is_private Out[10]: False In [11]: n4('100.64.0.0/10').is_private