This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.snow
Recipients Arfrever, Jim.Jewett, Mark.Shannon, alex, asvetlov, benjamin.peterson, eric.araujo, eric.smith, eric.snow, ezio.melotti, flox, gregory.p.smith, introom, josh.r, mrabarnett, ncoghlan, ned.deily, pitrou, refi64, rhettinger, scoder, serhiy.storchaka, tonn81, westurner, yselivanov
Date 2015-05-25.22:44:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432593861.35.0.543764009008.issue16991@psf.upfronthosting.co.za>
In-reply-to
Content
At present the only remaining issues with the patch are:

* 10 leaked refs in test_collections
* a failing test in test_enum

===========================================================================
     key: __members__
  result: OrderedDict([('red', <Color.red: 1>), ('green', <Color.green: 2>), ('blue', <Color.blue: 3>)])
expected: OrderedDict([('red', <Color.red: 1>), ('green', <Color.green: 2>), ('blue', <Color.blue: 3>)])
===========================================================================
test test_enum failed -- Traceback (most recent call last):
  File "/home/esnow/projects/cordereddict/Lib/test/test_enum.py", line 1668, in test_inspect_getmembers
    self.fail("result does not equal expected, see print above")
AssertionError: result does not equal expected, see print above

I'm not sure what to make of that test.  By all appearances it should be passing.  My guess is that there's some wackiness afoot over in Enum, but I'll take a closer look after I get the ref counts sorted out.
History
Date User Action Args
2015-05-25 22:44:21eric.snowsetrecipients: + eric.snow, rhettinger, gregory.p.smith, ncoghlan, pitrou, scoder, eric.smith, benjamin.peterson, ned.deily, ezio.melotti, eric.araujo, mrabarnett, Arfrever, alex, asvetlov, flox, Mark.Shannon, Jim.Jewett, serhiy.storchaka, yselivanov, westurner, refi64, josh.r, tonn81, introom
2015-05-25 22:44:21eric.snowsetmessageid: <1432593861.35.0.543764009008.issue16991@psf.upfronthosting.co.za>
2015-05-25 22:44:21eric.snowlinkissue16991 messages
2015-05-25 22:44:20eric.snowcreate