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 davipo
Recipients davipo
Date 2013-09-09.21:50:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1378763406.5.0.0321724375688.issue18991@psf.upfronthosting.co.za>
In-reply-to
Content
class MyOrderedDict(OrderedDict):
   
    def __getitem__(self, key):
        OrderedDict.__getitem__(self, key)

After setting a key, getting it returns None. See attached.

Am I missing something?

Discovered this when trying to use the dict_type parameter of ConfigParser.RawConfigParser -- caused an AttributeError.

Possibly relevant to http://bugs.python.org/issue9534
History
Date User Action Args
2013-09-09 21:50:06daviposetrecipients: + davipo
2013-09-09 21:50:06daviposetmessageid: <1378763406.5.0.0321724375688.issue18991@psf.upfronthosting.co.za>
2013-09-09 21:50:06davipolinkissue18991 messages
2013-09-09 21:50:06davipocreate