summaryrefslogtreecommitdiff
path: root/simplejson/decoder.py
Commit message (Expand)AuthorAgeFilesLines
* Additional security hardening improvements:Bob Ippolito2023-04-051-7/+11
* SJ-PT-23-100: Fix inconsistencies in error messages between C and Python impl...Bob Ippolito2023-04-041-2/+3
* SJ-PT-23-03: Backport integer string length limitation to limit quadratic par...Bob Ippolito2023-04-041-1/+14
* SJ-PT-23-01: Fix invalid handling of unicode escape sequences in Python decoderBob Ippolito2023-04-041-24/+20
* Check the unicode code point range before chr() is calledKishin Yagami2022-04-211-0/+2
* Bypass the decode() method in bytes subclasses.Serhiy Storchaka2018-04-251-1/+1
* Simplify compatibility code.compatSerhiy Storchaka2018-04-241-8/+8
* Merge pull request #162 from chrisgavin/unused-importsBob Ippolito2017-05-201-1/+1
|\
| * Remove unused imports.Chris Gavin2017-04-241-1/+1
* | Remofe remnants of Python 2.4 support.no-py2.4Serhiy Storchaka2017-05-081-5/+1
|/
* Remove fromhex all togetherRoy Williams2016-09-221-7/+11
* generalize BOM stripping to any use of raw_decodeBob Ippolito2014-07-211-0/+7
* Fix lower bound checking in scan_once / raw_decode API #98v3.5.3Bob Ippolito2014-06-241-0/+4
* Documentation fix for decoded string typesJuhaS2013-10-311-1/+1
* pass-through in decoder for lone surrogates #62v3.3.0surrogate-62baserock/morphBob Ippolito2013-05-071-21/+17
* improve truncated input error messages, use JSONDecodeError instead of StopIt...Bob Ippolito2013-02-211-74/+15
* fix off-by-one error in the colno of JSONDecodeError when lineno == 0 (#57)v3.0.9Bob Ippolito2013-02-211-1/+1
* better test coverage for invalid surrogatesBob Ippolito2012-12-301-10/+25
* start working on improving coverage, remove unused bytes code paths from py3Bob Ippolito2012-12-281-5/+10
* First pass at Python 3.3 compatibilityBob Ippolito2012-12-281-13/+18
* raw_decode(): Skip whitespace before the objectJanne Kulmala2012-07-191-3/+3
* raw_decode(): Document 'idx' parameterJanne Kulmala2012-07-191-0/+2
* Error messages changed to match proposal for Python 3.3.1Bob Ippolito2012-06-261-5/+9
* re http://code.google.com/p/simplejson/issues/detail?id=85Bob Ippolito2010-11-011-3/+3
* http://code.google.com/p/simplejson/issues/detail?id=81Bob Ippolito2010-07-121-1/+1
* http://code.google.com/p/simplejson/issues/detail?id=34Bob Ippolito2010-03-081-4/+7
* http://bugs.python.org/issue7451Bob Ippolito2009-12-271-1/+8
* http://code.google.com/p/simplejson/issues/detail?id=57Bob Ippolito2009-06-021-0/+6
* http://code.google.com/p/simplejson/issues/detail?id=45 Refactor decoder erro...Bob Ippolito2009-04-031-18/+44
* http://bugs.python.org/issue5381 ordered_pairs_hook backport to simplejsonBob Ippolito2009-03-291-25/+46
* tests and fix for containerless unicode float decoding http://code.google.com...Bob Ippolito2009-03-281-1/+1
* comment about weird struct usage per http://codereview.appspot.com/20095/diff...Bob Ippolito2009-02-281-0/+2
* fix long lines, make py2.6+ porting a bit easierBob Ippolito2009-02-221-4/+6
* replace a few string formats with string addition to make py26+ porting easierBob Ippolito2009-02-161-6/+12
* changes relevant to http://codereview.appspot.com/7311 -- mostly documentatio...Bob Ippolito2009-01-051-20/+35
* bump version, use python stdlib whitespace and docstring conventionsBob Ippolito2008-10-171-18/+15
* god bless closures.Bob Ippolito2008-09-261-2/+1
* gratuitous comments, some additional type checkingBob Ippolito2008-09-251-0/+1
* more decoding perf enhancements, this time with lots of C code (TODO: check f...Bob Ippolito2008-09-241-7/+4
* even more decoder optimizationsBob Ippolito2008-09-241-14/+7
* even more decoder optimizationsBob Ippolito2008-09-241-75/+39
* ugly hacks to decoder to avoid dispatch for roughly 2x speedupBob Ippolito2008-09-231-36/+78
* http://code.google.com/p/simplejson/issues/detail?id=16Bob Ippolito2008-08-201-6/+3
* backport fixes from py2.6 issue2750 branchBob Ippolito2008-05-041-6/+8
* PEP 7, PEP 8 cleanupsBob Ippolito2008-05-031-4/+14
* bump version, resolve http://code.google.com/p/simplejson/issues/detail?id=3Bob Ippolito2008-03-251-5/+14
* decoder speed enhancementsBob Ippolito2008-03-231-2/+10
* make tests pass on UCS2 platformsBob Ippolito2008-03-231-1/+2
* surrogate pair decodingBob Ippolito2008-03-231-3/+16
* parse_float, parse_int, parse_constant hooksBob Ippolito2008-03-231-5/+32