[issue6169] Important comparison bug in ipaddr

2009-06-01 Thread Gregory P. Smith
Gregory P. Smith added the comment: Thanks! Fixed in trunk r73135 and py3k r73136. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___

[issue6169] Important comparison bug in ipaddr

2009-06-01 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- priority: -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue6169] Important comparison bug in ipaddr

2009-06-01 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- assignee: -> gregory.p.smith nosy: +gregory.p.smith ___ Python tracker ___ ___ Python-bugs-list mail

[issue6169] Important comparison bug in ipaddr

2009-06-01 Thread Michael Shields
New submission from Michael Shields : The open source version of ipaddr had an important comparison bug in which it was possible for x > y and x < y. The fix for this should be applied to the Python standard library version as well. http://code.google.com/p/ipaddr-py/source/detail?r=77 -