[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed in 2.7 and 3.1 and ported to 3.2 (b279611146d7) and 3.3 (e8e3f2b72a32). In 3.1 json was completely broken without _json, so I fixed that too. I also did some minor cleanup in ec6d881f5b02. -- resolution: -> fixed stage: needs patch -> committed/rej

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 36e676a8541d by Ezio Melotti in branch '3.1': #9233: skip _json-specific tests when _json is not available. http://hg.python.org/cpython/rev/36e676a8541d New changeset 7019fc1a9663 by Ezio Melotti in branch '3.1': #9233: Fix json to work properly e

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset d58c63ff5bb2 by Ezio Melotti in branch '2.7': #9233: Fix json.loads({}) to return a dict (instead of a list), when _json is not available. http://hg.python.org/cpython/rev/d58c63ff5bb2 -- ___ Python tra

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Terry J. Reedy
Terry J. Reedy added the comment: Do those new check finish this issue and should it be closed? If not, what is left? -- nosy: +terry.reedy ___ Python tracker ___ ___

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: -> ezio.melotti versions: -Python 2.6 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Roundup Robot
Roundup Robot added the comment: New changeset 500063f6ae5a by Ezio Melotti in branch '2.7': #9233: skip _json-specific tests when _json is not available. http://hg.python.org/cpython/rev/500063f6ae5a -- nosy: +python-dev ___ Python tracker

[issue9233] json.load failure when C optimizations aren't built

2011-04-12 Thread Ezio Melotti
Ezio Melotti added the comment: I ran the tests again on 2.7 and got 3 failures: == ERROR: test_c_scanstring (json.tests.test_scanstring.TestScanString) -- Tra

[issue9233] json.load failure when C optimizations aren't built

2011-01-28 Thread Alex
Alex added the comment: Just a note from downstream with PyPy: we've cherry-picked the commit Bob linked into our copy of the 2.7 stdlib since we don't have an _json (yet). -- nosy: +alex ___ Python tracker __

[issue9233] json.load failure when C optimizations aren't built

2011-01-26 Thread Bob Ippolito
Bob Ippolito added the comment: For what it's worth, I don't think any of the failures mentioned here are in the current version of simplejson. There aren't any tests that check the speedup module name, the speedup tests are skipped when speedups are not detected, and the empty json object bu

[issue9233] json.load failure when C optimizations aren't built

2011-01-26 Thread David Stanek
Changes by David Stanek : -- nosy: +dstanek ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue9233] json.load failure when C optimizations aren't built

2010-07-12 Thread Fred L. Drake, Jr.
Fred L. Drake, Jr. added the comment: The attached test only fails for Python 2.7; removing Python 2.6 from this issue. -- ___ Python tracker ___ ___

[issue9233] json.load failure when C optimizations aren't built

2010-07-12 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +bob.ippolito, ezio.melotti stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list maili

[issue9233] json.load failure when C optimizations aren't built

2010-07-12 Thread Fred L. Drake, Jr.
New submission from Fred L. Drake, Jr. : The json decoder doesn't pass tests when the C optimizations in the _json module aren't available. The actual test failures appear fairly superficial, but aren't the limit of the problems. Empty objects are converted to empty lists instead of empty dic