| Commit message (Expand) | Author | Age | Files | Lines |
* | http://code.google.com/p/simplejson/issues/detail?id=27 | Bob Ippolito | 2008-10-24 | 2 | -2/+3 |
* | bump version, use python stdlib whitespace and docstring conventions | Bob Ippolito | 2008-10-17 | 9 | -174/+90 |
* | fix several reference leaks, doh :( | Bob Ippolito | 2008-10-11 | 1 | -5/+21 |
* | make a test resilient to py2.6 changes in formatting | Bob Ippolito | 2008-10-11 | 1 | -3/+3 |
* | decoder optimization: pass around a next index pointer instead of using tempo... | Bob Ippolito | 2008-10-11 | 1 | -96/+104 |
* | use PyTuple_New and PyTuple_SET_ITEM to skip some refcounting games, although... | Bob Ippolito | 2008-10-11 | 1 | -3/+8 |
* | http://code.google.com/p/simplejson/issues/detail?id=26 | Bob Ippolito | 2008-10-10 | 1 | -1/+1 |
* | use Py_CLEAR, fix some unlikely DECREF in PyList_Append calls | Bob Ippolito | 2008-10-07 | 2 | -59/+33 |
* | Py_IS_FINITE for Python 2.4 | Bob Ippolito | 2008-10-04 | 1 | -0/+3 |
* | version bump | Bob Ippolito | 2008-10-03 | 1 | -1/+1 |
* | #24: MSVC2003 would be better titled MSVC1970; based on patch from atsuoishim... | Matthew Dempsky | 2008-10-03 | 1 | -27/+49 |
* | fix long() encoding | Bob Ippolito | 2008-09-29 | 1 | -2/+2 |
* | failing test for long, thanks @djco | Bob Ippolito | 2008-09-29 | 1 | -0/+5 |
* | commit patch for mingw support; regression tests checked with Python 2.5 on O... | Matthew Dempsky | 2008-09-28 | 1 | -10/+20 |
* | version bump | Bob Ippolito | 2008-09-27 | 1 | -1/+1 |
* | run docs in test suite | Bob Ippolito | 2008-09-27 | 1 | -1/+2 |
* | use C path for float encoding | Bob Ippolito | 2008-09-26 | 2 | -13/+34 |
* | use tp_call instead of methods | Bob Ippolito | 2008-09-26 | 2 | -109/+29 |
* | make static | Bob Ippolito | 2008-09-26 | 1 | -3/+7 |
* | style cleanup and http://bugs.python.org/issue3623 | Bob Ippolito | 2008-09-26 | 1 | -69/+138 |
* | C fast path for encoding | Bob Ippolito | 2008-09-26 | 2 | -10/+575 |
* | cut out a few yields in exchange for string ops | Bob Ippolito | 2008-09-26 | 2 | -11/+12 |
* | god bless closures. | Bob Ippolito | 2008-09-26 | 2 | -190/+164 |
* | first pass at making a horrible optimized mess out of the encoding bits of si... | Bob Ippolito | 2008-09-26 | 1 | -172/+243 |
* | optimize for ASCII string encoding (not a big difference for our strings though) | Bob Ippolito | 2008-09-25 | 1 | -17/+41 |
* | fix another sign-extension bug | Matthew Dempsky | 2008-09-25 | 1 | -1/+1 |
* | prevent sign-extension on non-ASCII characters | Matthew Dempsky | 2008-09-25 | 1 | -1/+1 |
* | test for http://code.google.com/p/simplejson/issues/detail?id=22 | Bob Ippolito | 2008-09-25 | 1 | -0/+4 |
* | stricter surrogate pair decoding when Py_UNICODE_WIDE | Matthew Dempsky | 2008-09-25 | 1 | -10/+26 |
* | branchless unicode escaping | Matthew Dempsky | 2008-09-25 | 1 | -17/+8 |
* | eliminate variable distance bitwise shifts | Matthew Dempsky | 2008-09-25 | 1 | -16/+16 |
* | fix format strings | Matthew Dempsky | 2008-09-25 | 1 | -2/+2 |
* | gratuitous comments, some additional type checking | Bob Ippolito | 2008-09-25 | 2 | -32/+153 |
* | clean up C code, change API to be str preserving for ASCII only strings, bump... | Bob Ippolito | 2008-09-25 | 2 | -177/+157 |
* | more C code in the decoder, speed++ | Bob Ippolito | 2008-09-24 | 1 | -77/+297 |
* | fix the ref leak :) | Bob Ippolito | 2008-09-24 | 1 | -0/+20 |
* | more decoding perf enhancements, this time with lots of C code (TODO: check f... | Bob Ippolito | 2008-09-24 | 3 | -19/+501 |
* | even more decoder optimizations | Bob Ippolito | 2008-09-24 | 2 | -24/+23 |
* | even more decoder optimizations | Bob Ippolito | 2008-09-24 | 2 | -120/+78 |
* | bump version | Bob Ippolito | 2008-09-23 | 1 | -1/+1 |
* | ugly hacks to decoder to avoid dispatch for roughly 2x speedup | Bob Ippolito | 2008-09-23 | 3 | -81/+125 |
* | bump version, merge some changes from Python trunk _json | Bob Ippolito | 2008-09-13 | 2 | -10/+29 |
* | http://code.google.com/p/simplejson/issues/detail?id=16 | Bob Ippolito | 2008-08-20 | 5 | -13/+13 |
* | use -msimplejson.tool instead of -msimplejson to match python 2.6 json library | Bob Ippolito | 2008-05-09 | 2 | -31/+51 |
* | backport fixes from py2.6 issue2750 branch | Bob Ippolito | 2008-05-04 | 4 | -17/+159 |
* | bump version, fix two ref leaks | Bob Ippolito | 2008-05-04 | 2 | -1/+3 |
* | tabs to spaces | Bob Ippolito | 2008-05-03 | 1 | -3/+3 |
* | PEP 7, PEP 8 cleanups | Bob Ippolito | 2008-05-03 | 5 | -48/+92 |
* | http://code.google.com/p/simplejson/issues/detail?id=10 | Bob Ippolito | 2008-05-03 | 2 | -5/+28 |
* | convert test suite to unittest, remove jsonfilter, bump version to 0.9 | Bob Ippolito | 2008-05-03 | 15 | -266/+282 |