STINNER Victor added the comment:

"It would be very useful to be able to not only iterate through subnets, but 
also index a subnet."

For your information, the IPy module supports that:

>>> tuple(IPy.IP('192.168.1.128/31'))
(IP('192.168.1.128'), IP('192.168.1.129'))
>>> IPy.IP('2000::/3')[2**120]
IP('2100::')

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue20860>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to