Closed tkem closed 9 years ago
Resolves issue phihag/ipaddress#15
from __future__ import unicode_literals
ipaddress.py
test_ipaddress.py
u'...'
u"..."
struct.pack()
struct.unpack()
.travis.yml
setup.py
ipaddress.__version__
1.0.6
Thank you very much! Merged.
Resolves issue phihag/ipaddress#15
from __future__ import unicode_literals
to bothipaddress.py
andtest_ipaddress.py
.u'...'
andu"..."
with plain string literals.struct.pack()
andstruct.unpack()
with byte literals for Python 2.6 compatibility..travis.yml
andsetup.py
classifiers.ipaddress.__version__
to1.0.6
, the version used insetup.py
; if you release a new version, don't forget to update the version number in both files, or better, rewritesetup.py
to use the version from the module.