1. bb0dbd5 Issue #26457: Fixed the subnets() methods in IP network classes for the case by Serhiy Storchaka · 9 years ago
  2. 9ecf00e Remove a duplicate test_addresses key:value as identified by Vincent by Gregory P. Smith · 9 years ago
  3. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  4. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  5. 88f64f3 Issue #23103: Reduced the memory consumption of IPv4Address and IPv6Address. by Serhiy Storchaka · 9 years ago
  6. ffd48c9 Issue #23268: Fixed bugs in the comparison of ipaddress classes. by Serhiy Storchaka · 10 years ago
  7. f186e12 Issue #23268: Fixed bugs in the comparison of ipaddress classes. by Serhiy Storchaka · 10 years ago
  8. b53f0fb Issue #23266: Restore the performance of ipaddress.collapse_addresses() whith by Serhiy Storchaka · 10 years ago
  9. a556af7 Fixed tests for issue #23133 (pickling of IPv4Network was not tested). by Serhiy Storchaka · 10 years ago
  10. 5f38f5c Issue #23133: Pickling of ipaddress objects now produces more compact and by Serhiy Storchaka · 10 years ago
  11. e6f250e Issue #23266: Much faster implementation of ipaddress.collapse_addresses() when there are many non-consecutive addresses. by Antoine Pitrou · 10 years ago
  12. b0f5686 #20815: small readability improvements in ipaddress tests. by R David Murray · 10 years ago
  13. 7567865 #20815: small readability improvements in ipaddress tests. by R David Murray · 10 years ago
  14. 5fb195f Issue #16531: ipaddress.IPv4Network and ipaddress.IPv6Network now accept an (address, netmask) tuple argument, so as to easily construct network objects from existing addresses. by Antoine Pitrou · 10 years ago
  15. ebdaaf4 Issue #20480: Add ipaddress.reverse_pointer. Patch by Leon Weber. by Eric V. Smith · 10 years ago
  16. 99b1f2b Issue #20553. Use specific asserts in ipaddress tests. by Serhiy Storchaka · 11 years ago
  17. 7c389e2 Issue #20553. Use specific asserts in ipaddress tests. by Serhiy Storchaka · 11 years ago
  18. aad0ea0 Merge fix for #18805 from 3.3 by Nick Coghlan · 11 years ago
  19. 932346f Issue #18805: better netmask validation in ipaddress by Nick Coghlan · 11 years ago
  20. e5019d5 #17400: correct handling of 100.64.0.0/10, fixing the docs and updating NEWS by Peter Moody · 11 years ago
  21. be9c1b1 #17400: fix documentation, add cache to is_global and correctly handle 100.64.0.0/10 by Peter Moody · 11 years ago
  22. 22c3176 #17400; ipaddress should make it easy to identify rfc6598 addresses by Peter Moody · 11 years ago
  23. a8517ad Issue #14814: document the Interface APIs and fix various problems with the string representations (initial patch by Eli Bendersky). by Nick Coghlan · 12 years ago
  24. e3ded95 Issue #14814: Remove redundant property from interface objects - prefixlen can be accessed via the associated network object by Nick Coghlan · 12 years ago
  25. 730f67f Issue 14814: Docs work showed some more cases of networks pretending to be addresses and highlighted the weird approach to implementing the 'is_whatever' properties. Impl now illustrates far more clearly that networks have a property if both their network and broadcast addresses have that property by Nick Coghlan · 12 years ago
  26. e0c3f5e Close #15559: Implementing __index__ creates a nasty interaction with the bytes constructor. At least for 3.3, ipaddress objects must now be explicitly converted with int() and thus can't be passed directly to the hex() builtin. by Nick Coghlan · 12 years ago
  27. 07c4e33 Issue 14814: The new systematic tests aren't just about error reporting any more - change names accordingly. Added and tweaked some example to ensure they were covering the intended code paths by Nick Coghlan · 12 years ago
  28. 27396a1 Issue 14814: Remove dead function (noticed by Serhiy Storchaka) by Nick Coghlan · 12 years ago
  29. 297b143 Issue 14814: Further error case testing coverage and cleanups by Nick Coghlan · 12 years ago
  30. 3008ec0 Issue 14814: Ensure ordering semantics across all 3 entity types in ipaddress are consistent and well-defined by Nick Coghlan · 12 years ago
  31. 9a9c28c Issue 14814: Correctly return NotImplemented from ipaddress._BaseNetwork.__eq__ by Nick Coghlan · 12 years ago
  32. b582ecc Issue 14814: Explain how to get more error detail in the ipaddress tutorial, and tweak the display for octet errors in IPv4 (noticed the formatting problem when adding to the docs) by Nick Coghlan · 12 years ago
  33. 36f8dcd Issue 14814: Provide more informative error messages in ipaddress, and ensure that errors are caught as expected by Nick Coghlan · 12 years ago
  34. 5cf896f Issue 14814: Eliminate bytes warnings from ipaddress by correctly throwing an exception early when given bytes data of the wrong length. Also removes 2.x backwards compatibility code from associated tests. by Nick Coghlan · 12 years ago
  35. 3c2570c Issue 14814: Better handling of cases where octet/hextet parsing fails, including ensuring that tracebacks are still clean even when calling class constructors directly by Nick Coghlan · 12 years ago
  36. d972265 Improve an internal ipaddress test, add a comment explaining why treating networks as containers of interfaces rather than addresses would prove confusing by Nick Coghlan · 12 years ago
  37. 91c5a34 #14814: ipaddress: refactor dup code, minor janitoring, bump coverage by Hynek Schlawack · 12 years ago
  38. 454a74d #14814: Remove dead code from ipaddress by Hynek Schlawack · 12 years ago
  39. bcd3044 #14814: Use correct comparison for IP addresses by Hynek Schlawack · 12 years ago
  40. 35db513 #14814: Fix errror message creation in ipaddress.collapse_addresses by Hynek Schlawack · 12 years ago
  41. 2c58910 Issue #14814: Clean out an obsolete property and method from ipaddress Network objects by Nick Coghlan · 12 years ago
  42. aff73f9 Issue #14814: Cleanup ipaddress header comments by Nick Coghlan · 12 years ago
  43. 51c3067 Issue #14814: In the spirit of TOOWTDI, ditch the redundant version parameter to the factory functions by using the appropriate direct class references instead by Nick Coghlan · 12 years ago
  44. 876ecad Issue #14814: improve docstrings and arguments value handling, as per Terry J. Reedy's comments by Sandro Tosi · 12 years ago
  45. dc9b255 Issue #14814: addition of the ipaddress module (stage 1 - code and tests) by Nick Coghlan · 12 years ago