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.

classification
Title: Backwards __contains__/has_key in xml/sax/xmlreader.py
Type: behavior Stage:
Components: Library (Lib) Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: MostAwesomeDude, jackdied
Priority: normal Keywords: patch

Created on 2009-07-08 22:47 by MostAwesomeDude, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
temp.patch MostAwesomeDude, 2009-07-08 22:47 Patch against trunk
Messages (2)
msg90290 - (view) Author: Corbin Simpson (MostAwesomeDude) Date: 2009-07-08 22:47
Not a big deal, but these two methods were backwards in AttributesImpl
in xml/sax/xmlreader.py, and it was causing fun little problems in some
of my code on Python 2.6.0, so I decided to whip up a patch.

(Of course, this is fixed in Py3k since has_key() got nuked.)

~ C.
msg99946 - (view) Author: Jack Diederich (jackdied) * (Python committer) Date: 2010-02-23 19:34
updated.  It looks like the backport patch from 3x fuzzed and hit the wrong method.
History
Date User Action Args
2022-04-11 14:56:50adminsetgithub: 50691
2010-02-23 19:34:54jackdiedsetstatus: open -> closed

nosy: + jackdied
messages: + msg99946

resolution: fixed
2009-07-08 22:47:16MostAwesomeDudecreate