summaryrefslogtreecommitdiff
path: root/Lib/ipaddress.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #20508: Improve exception message of IPv{4,6}Network.__getitem__Berker Peksag2016-06-111-2/+2
* Issue #21386: Implement missing IPv4Address.is_global propertyBerker Peksag2016-06-111-0/+7
* Issue #26457: Fixed the subnets() methods in IP network classes for the caseSerhiy Storchaka2016-03-011-9/+9
* Issue #16261: Converted some bare except statements to except statementsSerhiy Storchaka2015-05-201-2/+2
* Issue #23103: Reduced the memory consumption of IPv4Address and IPv6Address.Serhiy Storchaka2015-03-071-13/+12
* Issue #23268: Fixed bugs in the comparison of ipaddress classes.Serhiy Storchaka2015-01-261-202/+343
|\
| * Issue #23266: Restore the performance of ipaddress.collapse_addresses() whithSerhiy Storchaka2015-01-191-20/+16
| * Issue #23133: Pickling of ipaddress objects now produces more compact andSerhiy Storchaka2015-01-181-7/+14
| * Issue #23266: Much faster implementation of ipaddress.collapse_addresses() wh...Antoine Pitrou2015-01-181-6/+10
| * PEP 479: Use the return-keyword instead of raising StopIteration inside a ge...Raymond Hettinger2014-11-221-1/+1
| * Issue #22823: Use set literals instead of creating a set from a listRaymond Hettinger2014-11-091-1/+1
| * Issue #22186: Fix typos in Lib/.Berker Peksag2014-10-191-1/+1
| |\
| * | Refactor precomputed constants in the ipaddress module (suggested by Charles-...Antoine Pitrou2014-05-241-58/+67
| * | Issue #21513: Speedup some properties of IP addresses (IPv4Address, IPv6Addre...Antoine Pitrou2014-05-231-51/+69
| * | Issue #20826: Optimize ipaddress.collapse_addresses().Antoine Pitrou2014-05-151-27/+26
| * | Issue #21487: Optimize ipaddress.summarize_address_range() and ipaddress.{IPv...Antoine Pitrou2014-05-151-21/+7
| * | Issue #21486: Optimize parsing of netmasks in ipaddress.IPv4Network and ipadd...Antoine Pitrou2014-05-151-79/+119
| * | Issue #16531: ipaddress.IPv4Network and ipaddress.IPv6Network now accept an (...Antoine Pitrou2014-05-121-21/+74
| * | Issue #20480: Add ipaddress.reverse_pointer. Patch by Leon Weber.Eric V. Smith2014-04-141-0/+29
* | | Issue #23268: Fixed bugs in the comparison of ipaddress classes.Serhiy Storchaka2015-01-261-40/+7
| |/ |/|
* | Issue #22186: Fix typos in Lib/.Berker Peksag2014-10-191-1/+1
|/
* Issue #19157: Include the broadcast address in the usuable hosts for IPv6Peter Moody2014-03-111-0/+12
* Merge fix for #18805 from 3.3Nick Coghlan2014-02-081-11/+70
|\
| * #17400: correct handling of 100.64.0.0/10, fixing the docs and updating NEWSPeter Moody2013-10-241-12/+15
| * #17400: fix documentation, add cache to is_global and correctly handle 100.64...Peter Moody2013-10-221-3/+5
| * #17400; ipaddress should make it easy to identify rfc6598 addressesPeter Moody2013-10-211-11/+65
* | Issue #18805: better netmask validation in ipaddressNick Coghlan2014-02-081-65/+83
|/
* #18705: fix a number of typos. Patch by F?vry Thibault.Ezio Melotti2013-08-171-2/+2
* Fix a few typos and a double semicolon. Patch by Eitan Adler.Ezio Melotti2013-01-271-1/+1
* Issue #15888: fixing problems in ipaddress doctests. Patch by Chris JerdonekEli Bendersky2012-10-071-3/+4
* Close #14814: Avoid depending on struct by using newer features. Also use enu...Nick Coghlan2012-08-201-8/+6
* Issue #14814: document the Interface APIs and fix various problems with the s...Nick Coghlan2012-08-201-3/+6
* Issue #14814: Remove redundant property from interface objects - prefixlen ca...Nick Coghlan2012-08-051-9/+1
* Issue 14814: Docs work showed some more cases of networks pretending to be ad...Nick Coghlan2012-08-051-180/+224
* Close #15559: Implementing __index__ creates a nasty interaction with the byt...Nick Coghlan2012-08-051-6/+0
* Issue 14814: The new systematic tests aren't just about error reporting any m...Nick Coghlan2012-07-081-10/+13
* Issue 14814: Remove dead function (noticed by Serhiy Storchaka)Nick Coghlan2012-07-081-18/+0
* Issue 14814: Further error case testing coverage and cleanupsNick Coghlan2012-07-081-25/+26
* Issue 14814: Ensure ordering semantics across all 3 entity types in ipaddress...Nick Coghlan2012-07-081-67/+69
* Issue 14814: Correctly return NotImplemented from ipaddress._BaseNetwork.__eq__Nick Coghlan2012-07-071-6/+6
* Issue 14814: Explain how to get more error detail in the ipaddress tutorial, ...Nick Coghlan2012-07-071-2/+3
* Issue 14814: Make the ipaddress code easier to follow by using newer language...Nick Coghlan2012-07-071-91/+67
* Issue 14814: Provide more informative error messages in ipaddress, and ensure...Nick Coghlan2012-07-071-50/+91
* Issue 14814: %s implies coercion with str() - remove a lot of redundant str()...Nick Coghlan2012-07-071-34/+33
* Issue 14814: Eliminate bytes warnings from ipaddress by correctly throwing an...Nick Coghlan2012-07-071-4/+12
* Issue 14814: Better handling of cases where octet/hextet parsing fails, inclu...Nick Coghlan2012-07-071-3/+7
* Improve an internal ipaddress test, add a comment explaining why treating net...Nick Coghlan2012-06-171-11/+10
* #14814: Remove redundant code from ipaddress.IPv6NetworkHynek Schlawack2012-06-081-13/+1
* #14814: ipaddress: refactor dup code, minor janitoring, bump coverageHynek Schlawack2012-06-051-112/+59
* #14814: Remove dead code from ipaddressHynek Schlawack2012-06-041-38/+7