summaryrefslogtreecommitdiff
path: root/simplejson/_speedups.c
Commit message (Expand)AuthorAgeFilesLines
* pass-through in decoder for lone surrogates #62v3.3.0surrogate-62baserock/morphBob Ippolito2013-05-071-57/+41
* ignore_nan #63ecma-262-63Bob Ippolito2013-05-011-12/+23
* make argument order for c_make_encoder match make_iterencodeBob Ippolito2013-05-011-2/+2
* Implement for_json kwarg; pure Python version; add tests; update documentation.shakefu2013-04-171-5/+7
* Initial stab at for_json hook for C extension.shakefu2013-04-171-0/+27
* improve truncated input error messages, use JSONDecodeError instead of StopIt...Bob Ippolito2013-02-211-66/+115
* Fix a Python 2.x compiler warning for narrow unicode builds (#56)v3.0.8Bob Ippolito2013-02-191-3/+5
* Fix msvc10 compile error under Python 3.3Christoph Gohlke2013-01-011-1/+1
* bump to 3.0.3, fix bugsv3.0.3Bob Ippolito2013-01-011-35/+41
* Revert "Revert "Merge pull request #46 from cgohlke/patch-1""Bob Ippolito2013-01-011-3/+6
* Revert "Merge pull request #46 from cgohlke/patch-1"Bob Ippolito2013-01-011-6/+3
* Fixes for Visual C compilersChristoph Gohlke2013-01-011-3/+6
* bump to 3.0.2, fix Py_EnterRecusiveCall/Py_LeaveRecursiveCall balance from 3.0.1v3.0.2Bob Ippolito2013-01-011-4/+12
* _Py_Accu style encoder optimization, bump to 3.0.1v3.0.1Bob Ippolito2013-01-011-36/+157
* clean up skipkeys/stringification in C APIBob Ippolito2012-12-301-86/+105
* more coverage, decimal key coercionBob Ippolito2012-12-291-0/+5
* try and use native Py3.3 unicode everywhereBob Ippolito2012-12-291-109/+159
* fix some style nitsBob Ippolito2012-12-281-3/+6
* start working on improving coverage, remove unused bytes code paths from py3Bob Ippolito2012-12-281-15/+45
* First pass at Python 3.3 compatibilityBob Ippolito2012-12-281-206/+437
* Error messages changed to match proposal for Python 3.3.1Bob Ippolito2012-06-261-10/+16
* Fix for regression introduced in 2.5.1v2.5.2Bob Ippolito2012-05-101-1/+1
* Support for use_decimal=True in sub-interpretersv2.5.1Bob Ippolito2012-05-101-14/+13
* bump version to 2.5.0, add docs for item_sort_keyBob Ippolito2012-03-291-2/+2
* Added item_sort_keyScott Maxwell2012-03-201-5/+19
* Change 1 to 1LL to fix warningsScott Maxwell2012-03-061-2/+2
* fix edge cases and pre-2.7 compatibilityBob Ippolito2012-03-061-26/+39
* Finalized bigint_as_string featureScott Maxwell2012-03-021-9/+15
* Changed limits from 2^54 to 2^53Scott Maxwell2012-03-011-2/+2
* Added javascript_safe_ints supportScott Maxwell2012-03-011-5/+26
* fix 2.3.1 regression and bump version to 2.3.2v2.3.2Bob Ippolito2011-12-301-2/+2
* callable check for _asdict with namedtuple_as_objectdict-subclass-gh26Bob Ippolito2011-12-291-1/+9
* Removed PyTuple_Check from _is_namedtuple() in _speedups.cDavid Baumgold2011-11-101-1/+1
* 2.2.0 - namedtuple_as_object and tuple_as_array options, use_decimal now True...namedtuple-object-gh6Bob Ippolito2011-09-041-5/+25
* 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