summaryrefslogtreecommitdiff
path: root/simplejson/encoder.py
Commit message (Expand)AuthorAgeFilesLines
* Additional security hardening improvements:Bob Ippolito2023-04-051-14/+14
* SJ-PT-23-101: Remove unused unichr import from encoderBob Ippolito2023-04-041-1/+1
* Clear `i` var from loop not to leak into module namespaceNikita Sobolev2022-11-161-0/+1
* Implement tests and fallback implementation of #301Bob Ippolito2022-11-141-18/+27
* Implement _asdict() check for pure python path as wellBob Ippolito2021-08-231-4/+12
* Fix the other comment typosBob Ippolito2018-04-251-3/+3
* fix comment typosBob Ippolito2018-04-251-3/+3
* Bypass the decode() method in bytes subclasses.Serhiy Storchaka2018-04-251-12/+22
* Allow to disable serializing bytes by default in Python 3.bytes-encodingSerhiy Storchaka2018-04-251-8/+11
* Simplify compatibility code.compatSerhiy Storchaka2018-04-241-11/+11
* Remove redundant parts of ESCAPE and ESCAPE_DCTRichard van der Hoff2018-03-291-3/+1
* documentation updatesRichard van der Hoff2018-03-291-1/+1
* Improve docstring on JSONEncoderForHTMLRichard van der Hoff2018-03-291-0/+5
* Simplify ESCAPE regexp constructionRichard van der Hoff2018-03-291-4/+1
* Avoid escaping U+2028 and U+2029 without ensure_asciiRichard van der Hoff2018-03-291-2/+7
* Avoid copying strings when encodingRichard van der Hoff2018-03-271-2/+2
* Fix string encoding for Python 2Bob Ippolito2017-11-231-2/+8
* Ensure that encoding text subtypes is consistent with or without speedups. Fi...Bob Ippolito2017-11-231-4/+4
* Make TypeError messages contain type name instead of a repr.Serhiy Storchaka2017-11-101-2/+4
* Fix #184 threaded import issue, prep v3.12.0v3.12.0Bob Ippolito2017-11-051-9/+2
* docstring fix in JSONEncoder: use_decimal defaults to TrueJure Cerjak2017-06-121-1/+1
* Bump version, update changelog, fix issues identified in code review of #143Bob Ippolito2016-10-281-1/+5
* Merge branch 'raw_json' of https://github.com/lamflam/simplejson into lamflam...Bob Ippolito2016-10-281-0/+10
|\
| * Add support for preprocessed JSON strings (with optimizations) in encoderKevin LaFlamme2016-09-011-0/+10
* | Fixes #144. Workaround for bad behavior in string subclasses.Bob Ippolito2016-10-211-1/+9
|/
* Fix issue with iterable_as_array and indent option, closes #128v3.8.1Bob Ippolito2015-10-271-4/+8
* Merge branch 'master' into iterable_as_array-gh1Nick Babcock2015-07-101-125/+248
|\
| * fix typo in e18cc09v3.7.3Bob Ippolito2015-05-311-1/+1
| * attempt to work around an issue with reloading the Decimal modulev3.7.2Bob Ippolito2015-05-221-4/+7
| * no longer trust custom repr for int/long/float subclasses #118v3.7.0Bob Ippolito2015-05-181-0/+9
| * consistently reject int_as_string_bitcount <= 0 #96v3.5.1Bob Ippolito2014-05-221-1/+3
| * clean up #96 and prep for v3.5.0 releaseBob Ippolito2014-05-211-5/+3
| * Adding `int_as_string_bitcount` optionColin Deasy2014-05-141-24/+44
| * ignore_nan #63ecma-262-63Bob Ippolito2013-05-011-4/+12
| * 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-28/+46
| * Updated documentation to reflect separators behavior when indent is not None ...Bob Ippolito2013-02-221-3/+4
| * v3.0.6, fixes ensure_ascii=False regression (#50)v3.0.6Bob Ippolito2013-01-111-1/+4
| * clean up skipkeys/stringification in C APIBob Ippolito2012-12-301-0/+1
| * more coverage, decimal key coercionBob Ippolito2012-12-291-1/+3
| * First pass at Python 3.3 compatibilityBob Ippolito2012-12-281-55/+83
| * Support for use_decimal=True in sub-interpretersv2.5.1Bob Ippolito2012-05-101-2/+4
| * bump version to 2.5.0, add docs for item_sort_keyBob Ippolito2012-03-291-0/+2
| * Added item_sort_keyScott Maxwell2012-03-201-5/+14
| * fix edge cases and pre-2.7 compatibilityBob Ippolito2012-03-061-6/+18
| * Finalized bigint_as_string featureScott Maxwell2012-03-021-10/+10
| * Changed limits from 2^54 to 2^53Scott Maxwell2012-03-011-5/+5
| * Added javascript_safe_ints supportScott Maxwell2012-03-011-7/+12
| * bump to 2.3.3 and clean up indent codev2.3.3Bob Ippolito2012-02-271-3/+1
| * Documentation and a test for the previous commitKeshav Kini2012-02-281-1/+1