Jump to letter: [
ABCDEFGHIJKLMNOPQRSTUVWXYZ
]
python-IPy - Python module for handling IPv4 and IPv6 Addresses and Networks
- Description:
IPy is a Python module for handling IPv4 and IPv6 Addresses and Networks
in a fashion similar to perl's Net::IP and friends. The IP class allows
a comfortable parsing and handling for most notations in use for IPv4
and IPv6 Addresses and Networks.
Packages
python-IPy-0.75-1.fc14.noarch
[31 KiB] |
Changelog
by Matt Domsch (2011-06-21):
- Version 0.75 (2011-04-12)
* IP('::/0').netmask() gives IP('::') instead of IP('0.0.0.0') (BZ#690625)
* Fix tests for Python 3.1 and 3.2
* ip.__nonzero__() and (ipa in ipb) return a bool instead of 0 or 1
* IP('0.0.0.0/0') + IP('0.0.0.0/0') raises an error, fix written by Arfrever
* Support Python 3: setup.py runs 2to3
* Update the ranges for IPv6 IPs
* Fix reverseName() and reverseNames() for IPv4 in IPv6 addresses
* Drop support of Python < 2.5
* Include examples and MANIFEST.in in source build (add them to MANIFEST.in)
* Remove __rcsid__ constant from IPy module
* Use xrange() instead of range()
* Use isinstance(x, int) instead of type(x) == types.IntType
* Prepare support of Python3 (use integer division: x // y)
* Fix IP(long) constructor: ensure that the address is not too large
* Constructor raise a TypeError if the type is not int, long, str or unicode
* 223.0.0.0/8 is now public (belongs to APNIC)
|