summaryrefslogtreecommitdiff
path: root/trunk
diff options
context:
space:
mode:
authorpmoody@google.com <pmoody@google.com@09200d28-7f98-11dd-ad27-0f66e57d2035>2009-01-26 17:25:51 +0000
committerpmoody@google.com <pmoody@google.com@09200d28-7f98-11dd-ad27-0f66e57d2035>2009-01-26 17:25:51 +0000
commitff0c0c32cee47ea5f3f1240b39b781cf1090a9b1 (patch)
tree461c20c1eedfe3e72b398c41fed3fa34cc8d0237 /trunk
parent724cadb23b3d3261d51a631abf6cc3f718d8bbd9 (diff)
downloadipaddr-py-ff0c0c32cee47ea5f3f1240b39b781cf1090a9b1.tar.gz
creating release 1.0.2 -
CHANGES: * r44. this makes the spacing and docstrings pep8 compliant. (pmoody@google.com) * r43. When processing the IPv4 mapped address 16 bits at a time, the components are stored in the reverse order. Updated the test to use a non-symmetric IPv4 address, which exhibited the bug. (smart@google.com) * r40. implment __int__ and __hex__. |will need to be updated for py3k (to use __index__) (pmoody@google.com) * r38 A cleanup from issue 9: Make exception messages consistent for IP(''), IPv4(''), IPv6('') (smart@google.com) * r37 Fix for issue 9: ipaddr.IP('') should raise ValueError (mshields@google.com) git-svn-id: https://ipaddr-py.googlecode.com/svn@45 09200d28-7f98-11dd-ad27-0f66e57d2035
Diffstat (limited to 'trunk')
-rw-r--r--trunk/ipaddr.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/ipaddr.py b/trunk/ipaddr.py
index f3d2787..3efe209 100644
--- a/trunk/ipaddr.py
+++ b/trunk/ipaddr.py
@@ -21,7 +21,7 @@ and prefixes.
"""
-__version__ = 'trunk'
+__version__ = '1.0.2'
class Error(Exception):