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 alex, asvetlov, benjamin.peterson, eric.snow, ezio.melotti, rhettinger, serhiy.storchaka
Date 2013-02-05.06:53:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1360047238.61.0.028581394303.issue16991@psf.upfronthosting.co.za>
In-reply-to
Content
Here's an updated patch.  I still have some ref-counting issues, but the patch is much closer to what I expect will be the final version.  At this point it passes all the main unit tests (segfaults in some of the supplemental Mapping tests).

One key thing is that for now the various iterators are faked using lists.  Once everything is sorted out I'll plug my implementation of the iterators back in (which I'd already mostly finished).

I see room for efficiency improvements in a couple spots.  As well, I plan on improving the subclass-ability of the type once it's otherwise happy.

Any feedback at the point would be helpful.  Regardless, I'm being careful to get this right and I'm no expert with the C-API, so it's taking a while.  :)

Some other considerations:

   * ensure that __init__() can reset and populate an existing dictionary:
             d=OrderedDict(); d[0]=1; d.__init__() # resets
   * avoid any reference cycles so that dicts can clean-up right-away when their ref-count drops to zero
     rather than waiting on GC.
   * possibly use the GIL to make the link updates atomic, trying to make the overall class thread safe.
   * methods like get() pop() or setdefault() shouldn't rely on __getitem__ raising KeyError
     because __missing__ may be present in a subclass
History
Date User Action Args
2013-02-05 06:53:59eric.snowsetrecipients: + eric.snow, rhettinger, benjamin.peterson, ezio.melotti, alex, asvetlov, serhiy.storchaka
2013-02-05 06:53:58eric.snowsetmessageid: <1360047238.61.0.028581394303.issue16991@psf.upfronthosting.co.za>
2013-02-05 06:53:58eric.snowlinkissue16991 messages
2013-02-05 06:53:57eric.snowcreate