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 kormat
Recipients abarry, kormat, ncoghlan, pitrou, r.david.murray, serhiy.storchaka, tklausmann
Date 2016-08-04.14:53:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1470322399.21.0.510498608419.issue27683@psf.upfronthosting.co.za>
In-reply-to
Content
The bug appears to be in the new form of the constructor. Here's a more minimal reproduction:

In python3.5:
>>> list(ipaddress.IPv4Network(("127.0.0.4", 31)).hosts())
[]

In python3.4
>>> list(ipaddress.IPv4Network("127.0.0.4/31").hosts())
[IPv4Address('127.0.0.4'), IPv4Address('127.0.0.5')]
History
Date User Action Args
2016-08-04 14:53:19kormatsetrecipients: + kormat, ncoghlan, pitrou, r.david.murray, serhiy.storchaka, abarry, tklausmann
2016-08-04 14:53:19kormatsetmessageid: <1470322399.21.0.510498608419.issue27683@psf.upfronthosting.co.za>
2016-08-04 14:53:19kormatlinkissue27683 messages
2016-08-04 14:53:19kormatcreate