[issue15615] More tests for JSON decoder to test Exceptions

2012-08-18 Thread Antoine Pitrou
Antoine Pitrou added the comment: Thanks and congratulations for your patch! It's now committed to all three branches. -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue15615] More tests for JSON decoder to test Exceptions

2012-08-18 Thread Roundup Robot
Roundup Robot added the comment: New changeset cd9a4883dd02 by Antoine Pitrou in branch '3.2': Issue #15615: Add some tests for the json module's handling of invalid input data. http://hg.python.org/cpython/rev/cd9a4883dd02 New changeset 01717c3da4fb by Antoine Pitrou in branch 'default': Issue

[issue15615] More tests for JSON decoder to test Exceptions

2012-08-11 Thread Kushal Das
Kushal Das added the comment: Contributor's agreement signed and sent to the given email address. Thanks for the input. -- ___ Python tracker ___ ___

[issue15615] More tests for JSON decoder to test Exceptions

2012-08-11 Thread Antoine Pitrou
Antoine Pitrou added the comment: Hi and thank you. The patch looks fine to me. Could you sign a contributor's agreement: http://www.python.org/psf/contrib/ ? -- nosy: +ezio.melotti, pitrou versions: +Python 2.7, Python 3.2, Python 3.3 -Python 3.4 __

[issue15615] More tests for JSON decoder to test Exceptions

2012-08-10 Thread Kushal Das
New submission from Kushal Das: Added two more tests in json module to test exception cases. test_extra_data: this test checks the error condition when we have extra data in the stream. test_invalid_escape: this test checks for the invalid escape sequence in the stream -- components