summaryrefslogtreecommitdiffstats
path: root/Lib/ipaddr.py
Commit message (Collapse)AuthorAgeFilesLines
* Simplified the header after discussion with Gregory Smith.Raymond Hettinger2009-05-151-13/+0
|
* Convert docstring examples to doctests and fixRaymond Hettinger2009-05-141-53/+76
| | | | | | any errors that were found. Add a usage note to compare_networks() showing how to do the ordering with modern python.
* Merged revisions 72489 via svnmerge fromGregory P. Smith2009-05-081-0/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72489 | gregory.p.smith | 2009-05-08 16:16:47 -0700 (Fri, 08 May 2009) | 3 lines Fix an off by one error on negative indexs to __getitem__ http://code.google.com/p/ipaddr-py/issues/detail?id=15 ........
* Merged revisions 72241 via svnmerge fromGregory P. Smith2009-05-031-14/+33
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r72241 | gregory.p.smith | 2009-05-03 12:37:05 -0700 (Sun, 03 May 2009) | 3 lines Optimization: move RFC defined network constant construction out of the is_*() methods and into module private instances. ........
* ipaddr cleanup for python 3.x:Gregory P. Smith2009-05-021-7/+6
| | | | | | * Get rid of __hex__. * Support bytearray as well as bytes. * Don't double test for integer input.
* make py3k compat code explicitly onBenjamin Peterson2009-05-021-26/+11
|
* Merged revisions 72173 via svnmerge fromGregory P. Smith2009-05-011-0/+1365
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72173 | gregory.p.smith | 2009-05-01 12:59:52 -0700 (Fri, 01 May 2009) | 5 lines Adds the ipaddr module to the standard library. Issue #3959. Based off of subversion r69 from http://code.google.com/p/ipaddr-py/ This code is 2to3 safe, I'll merge it into py3k later this afternoon. ........