update to upstream (git: 91dc64ba3f51100540b2ab6c6cd72c3bb18a6d49)
2 files changed
tree: 45dd9717af6004730d4ce336b6beb909de7b73d8
  1. .gitignore
  2. .travis.yml
  3. ipaddress.py
  4. LICENSE
  5. Makefile
  6. README.md
  7. README.txt
  8. setup.py
  9. test_ipaddress.py
README.md

ipaddress

Python 3.3's ipaddress for Python 2.6 and 2.7.

Note that you must pass in unicode objects when constructing from a character representation!

Correct:

ipaddress.ip_address(u'1.2.3.4')

Wrong:

ipaddress.ip_address('1.2.3.4')
ipaddress.ip_address(b'1.2.3.4')