[issue13774] json.loads raises a SystemError for invalid encoding on 2.7.2

2012-01-13 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: This will be fixed in the next 2.7.3, thanks for the report! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ _

[issue13774] json.loads raises a SystemError for invalid encoding on 2.7.2

2012-01-13 Thread Roundup Robot
Roundup Robot added the comment: New changeset a9680746ae4a by Amaury Forgeot d'Arc in branch '2.7': Issue #13774: json: Fix a SystemError when a bogus encoding is passed to http://hg.python.org/cpython/rev/a9680746ae4a -- nosy: +python-dev ___ Pytho

[issue13774] json.loads raises a SystemError for invalid encoding on 2.7.2

2012-01-12 Thread Amaury Forgeot d'Arc
Changes by Amaury Forgeot d'Arc : -- keywords: +patch Added file: http://bugs.python.org/file24212/json_badencoding.patch ___ Python tracker ___ _

[issue13774] json.loads raises a SystemError for invalid encoding on 2.7.2

2012-01-12 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: Here is a patch -- nosy: +amaury.forgeotdarc stage: -> patch review ___ Python tracker ___ _

[issue13774] json.loads raises a SystemError for invalid encoding on 2.7.2

2012-01-11 Thread Julian Berman
New submission from Julian Berman : >>> import json >>> json.loads("{}", [1, 2, 3]) Traceback (most recent call last): File "", line 1, in File "/usr/local/Cellar/python/2.7.2/lib/python2.7/json/__init__.py", line 339, in loads return cls(encoding=encoding, **kw).decode(s) File "/usr/