Add symlink for PyPi
2 files changed
tree: 7e983205b6cd0f7a39468d0538b3bc6b6a4ad1e6
  1. .gitignore
  2. .travis.yml
  3. ipaddress.py
  4. README.md
  5. setup.py
  6. 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')