summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* tag simplejson 2.0.7v2.0.7Bob Ippolito2009-01-050-0/+0
* update docsBob Ippolito2009-01-055-6/+8
* changes relevant to http://codereview.appspot.com/7311 -- mostly documentatio...Bob Ippolito2009-01-053-32/+176
* ensure unicode result if the input is a unicode stringBob Ippolito2009-01-032-1/+23
* yay whitespace and doctestBob Ippolito2009-01-032-2/+4
* add documentation for strictBob Ippolito2008-12-304-15/+31
* version bump, fixes to docs re http://bugs.python.org/issue4783Bob Ippolito2008-12-308-79/+174
* apply 26_win32_setup.diff from pjenveyBob Ippolito2008-12-191-1/+9
* version bump, remove python 2.3 compatibility claimBob Ippolito2008-11-252-3/+3
* add test coverage for check_circular and fix a Py_DECREF(NULL) but when check...Bob Ippolito2008-11-174-6/+36
* update docsBob Ippolito2008-11-074-27/+27
* typo in conf.pyBob Ippolito2008-11-071-4/+4
* http://code.google.com/p/simplejson/issues/detail?id=27Bob Ippolito2008-10-242-2/+3
* bump version, use python stdlib whitespace and docstring conventionsBob Ippolito2008-10-1710-175/+91
* fix several reference leaks, doh :(Bob Ippolito2008-10-111-5/+21
* make a test resilient to py2.6 changes in formattingBob Ippolito2008-10-111-3/+3
* 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
* http://code.google.com/p/simplejson/issues/detail?id=26Bob Ippolito2008-10-101-1/+1
* use Py_CLEAR, fix some unlikely DECREF in PyList_Append callsBob Ippolito2008-10-073-60/+34
* Py_IS_FINITE for Python 2.4Bob Ippolito2008-10-041-0/+3
* version bumpBob Ippolito2008-10-032-2/+2
* #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
* failing test for long, thanks @djcoBob Ippolito2008-09-291-0/+5
* commit patch for mingw support; regression tests checked with Python 2.5 on O...Matthew Dempsky2008-09-281-10/+20
* version bumpBob Ippolito2008-09-272-2/+2
* run docs in test suiteBob Ippolito2008-09-277-67/+71
* set a lot of mime typesBob Ippolito2008-09-270-0/+0
* switch to sphinx for docsBob Ippolito2008-09-2737-3712/+4547
* use C path for float encodingBob Ippolito2008-09-262-13/+34
* use tp_call instead of methodsBob Ippolito2008-09-262-109/+29
* remove non-working old benchmark scriptsBob Ippolito2008-09-262-12/+0
* 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-262-10/+575
* cut out a few yields in exchange for string opsBob Ippolito2008-09-262-11/+12
* god bless closures.Bob Ippolito2008-09-262-190/+164
* first pass at making a horrible optimized mess out of the encoding bits of si...Bob Ippolito2008-09-261-172/+243
* 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
* test for http://code.google.com/p/simplejson/issues/detail?id=22Bob Ippolito2008-09-251-0/+4
* 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-252-32/+153
* clean up C code, change API to be str preserving for ASCII only strings, bump...Bob Ippolito2008-09-253-178/+158
* more C code in the decoder, speed++Bob Ippolito2008-09-241-77/+297