summaryrefslogtreecommitdiff
path: root/simplejson/_speedups.c
Commit message (Expand)AuthorAgeFilesLines
* also test unicode and fix the JSONDecodeError issuescan-ValueError-gh15Bob Ippolito2011-09-031-2/+8
* encoder_listencode_obj recursion checkrecursion_control-11Bob Ippolito2011-05-071-1/+2
* encoder_listencode_obj recursion checkBob Ippolito2011-05-071-73/+71
* scan_once_unicode recursion checkBob Ippolito2011-05-071-10/+34
* scan_once_str recursion checkBob Ippolito2011-05-071-10/+34
* https://github.com/simplejson/simplejson/issues/5Bob Ippolito2011-04-191-0/+3
* http://code.google.com/p/simplejson/issues/detail?id=86Bob Ippolito2010-11-051-14/+55
* http://code.google.com/p/simplejson/issues/detail?id=82Bob Ippolito2010-07-191-1/+1
* hopefully fix compilation on windows http://code.google.com/p/simplejson/issu...Bob Ippolito2010-03-161-1/+2
* http://code.google.com/p/simplejson/issues/detail?id=34Bob Ippolito2010-03-081-5/+24
* fix Py_ssize_t converterBob Ippolito2009-12-271-3/+4
* incorrect decrefBob Ippolito2009-12-271-1/+0
* officially drop py2.4 support, doc tweaks, use only py2.5+ C APIBob Ippolito2009-12-271-1/+1
* http://bugs.python.org/issue7451Bob Ippolito2009-12-271-75/+146
* encoding memoizationBob Ippolito2009-12-271-13/+28
* use PyIter API instead of PySequence_Fast to avoid potential threading issuesBob Ippolito2009-12-271-15/+21
* Use PyOS_string_to_double when availableBob Ippolito2009-12-271-6/+39
* use iteritems instead of PyDict_Next (at the expense of some speed) http://bu...Bob Ippolito2009-12-271-5/+22
* http://code.google.com/p/simplejson/issues/detail?id=56 indent changed to stringBob Ippolito2009-05-171-4/+4
* http://code.google.com/p/simplejson/issues/detail?id=46 Parsing an array with...Bob Ippolito2009-04-031-2/+12
* http://code.google.com/p/simplejson/issues/detail?id=45 Refactor decoder erro...Bob Ippolito2009-04-031-9/+9
* http://bugs.python.org/issue5381 ordered_pairs_hook backport to simplejsonBob Ippolito2009-03-291-13/+73
* tests and fix for containerless unicode float decoding http://code.google.com...Bob Ippolito2009-03-281-1/+1
* re http://code.google.com/p/simplejson/issues/detail?id=41 http://bugs.python...Bob Ippolito2009-02-181-85/+149
* changes relevant to http://codereview.appspot.com/7311 -- mostly documentatio...Bob Ippolito2009-01-051-12/+138
* ensure unicode result if the input is a unicode stringBob Ippolito2009-01-031-1/+18
* add test coverage for check_circular and fix a Py_DECREF(NULL) but when check...Bob Ippolito2008-11-171-4/+4
* http://code.google.com/p/simplejson/issues/detail?id=27Bob Ippolito2008-10-241-1/+1
* fix several reference leaks, doh :(Bob Ippolito2008-10-111-5/+21
* decoder optimization: pass around a next index pointer instead of using tempo...Bob Ippolito2008-10-111-96/+104
* use PyTuple_New and PyTuple_SET_ITEM to skip some refcounting games, although...Bob Ippolito2008-10-111-3/+8
* use Py_CLEAR, fix some unlikely DECREF in PyList_Append callsBob Ippolito2008-10-071-58/+32
* Py_IS_FINITE for Python 2.4Bob Ippolito2008-10-041-0/+3
* #24: MSVC2003 would be better titled MSVC1970; based on patch from atsuoishim...Matthew Dempsky2008-10-031-27/+49
* fix long() encodingBob Ippolito2008-09-291-2/+2
* commit patch for mingw support; regression tests checked with Python 2.5 on O...Matthew Dempsky2008-09-281-10/+20
* use C path for float encodingBob Ippolito2008-09-261-11/+32
* use tp_call instead of methodsBob Ippolito2008-09-261-107/+28
* make staticBob Ippolito2008-09-261-3/+7
* style cleanup and http://bugs.python.org/issue3623Bob Ippolito2008-09-261-69/+138
* C fast path for encodingBob Ippolito2008-09-261-1/+555
* optimize for ASCII string encoding (not a big difference for our strings though)Bob Ippolito2008-09-251-17/+41
* fix another sign-extension bugMatthew Dempsky2008-09-251-1/+1
* prevent sign-extension on non-ASCII charactersMatthew Dempsky2008-09-251-1/+1
* stricter surrogate pair decoding when Py_UNICODE_WIDEMatthew Dempsky2008-09-251-10/+26
* branchless unicode escapingMatthew Dempsky2008-09-251-17/+8
* eliminate variable distance bitwise shiftsMatthew Dempsky2008-09-251-16/+16
* fix format stringsMatthew Dempsky2008-09-251-2/+2
* gratuitous comments, some additional type checkingBob Ippolito2008-09-251-32/+152
* clean up C code, change API to be str preserving for ASCII only strings, bump...Bob Ippolito2008-09-251-170/+150