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: Copy and paste error in _json.c
Type: Stage:
Components: Library (Lib) Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, torsten
Priority: normal Keywords:

Created on 2011-01-02 12:28 by torsten, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
patch torsten, 2011-01-02 12:28 Patch to fix the typo
Messages (3)
msg125044 - (view) Author: Torsten Landschoff (torsten) * Date: 2011-01-02 12:28
There is a copy and paste error in _json.c: The pairs_hook field is assigned but object_hook is verified to be non-null. The same field is verified a few lines back to this is superfluous at least.
msg125047 - (view) Author: Torsten Landschoff (torsten) * Date: 2011-01-02 12:31
FYI, this bug is not in Python 3.3 (as of svn r87615).
msg125053 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2011-01-02 14:20
Thanks, fixed in r87626.
History
Date User Action Args
2022-04-11 14:57:10adminsetgithub: 55013
2011-01-02 14:20:24georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg125053

resolution: fixed
2011-01-02 12:31:55torstensetmessages: + msg125047
2011-01-02 12:28:18torstencreate