| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Prep for v3.16.1 and add JSON lines examplejson-lines-example | Bob Ippolito | 2018-09-06 | 1 | -2/+22 |
| | | |||||
| * | Update CHANGES for v3.16.0v3.16.0 | Bob Ippolito | 2018-06-28 | 1 | -1/+1 |
| | | |||||
| * | fix indentation | Benjamin Peterson | 2018-06-26 | 1 | -1/+1 |
| | | |||||
| * | add test | Benjamin Peterson | 2018-06-26 | 1 | -0/+2 |
| | | |||||
| * | On Python 2, decode empty strings as str not unicode. | Benjamin Peterson | 2018-06-26 | 1 | -7/+8 |
| | | | | | | | | | | | | | | | | | In general on Python 2, simplejson decodes ASCII strings as str, only promoting to unicode when needed: >>> simplejson.loads('["Spaetzle", "Spätzle"]') ['Spaetzle', u'Sp\xe4tzle'] Since 83a493db6a8b859ec7b10fa85365dd3fdf144c68, though, simplejson has always decoded empty JSON strings as unicode: >>> simplejson.loads('""') u'' This PR restores the old behavior of decoding empty strings as str. | ||||
| * | v3.15.0v3.15.0 | Bob Ippolito | 2018-05-12 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' into speedups-cleanupspeedups-cleanup | Bob Ippolito | 2018-04-25 | 4 | -15/+76 |
| |\ | |||||
| | * | Merge branch 'master' into str-decodestr-decode | Bob Ippolito | 2018-04-25 | 2 | -6/+13 |
| | |\ | |||||
| | * | | Fix the other comment typos | Bob Ippolito | 2018-04-25 | 1 | -3/+3 |
| | | | | |||||
| | * | | fix comment typos | Bob Ippolito | 2018-04-25 | 1 | -3/+3 |
| | | | | |||||
| | * | | Bypass the decode() method in bytes subclasses. | Serhiy Storchaka | 2018-04-25 | 4 | -15/+76 |
| | | | | | | | | | | | | | | | | The Python and the C implementations produce different results due to using the decode() method. | ||||
| * | | | Merge branch 'master' into speedups-cleanup | Bob Ippolito | 2018-04-25 | 2 | -6/+13 |
| |\ \ \ | | |/ | |/| | |||||
| | * | | Support builds without cStringIO.cStringIO | Serhiy Storchaka | 2018-04-25 | 2 | -6/+13 |
| | |/ | | | | | | | | | The cStringIO module is optional. Fall back to StringIO if it is not available. | ||||
| * | | Clean up the C code. | Serhiy Storchaka | 2018-04-25 | 1 | -141/+105 |
| |/ | | | | | | | | | * Define less version-specific macros. * Remove redundant version checks and code inside version-specific code. * Always check `PyUnicode_READY()` for external unicode objects. * Use `PyUnicode_Join()`. * Use `PyUnicode_FromOrdinal()`. * All Python string constants are now allocated only once. | ||||
| * | Allow to disable serializing bytes by default in Python 3.bytes-encoding | Serhiy Storchaka | 2018-04-25 | 3 | -17/+107 |
| | | | | | | If encoding is None, then bytes objects will be passed to the default() method instead of transforming into unicode. | ||||
| * | Merge pull request #215 from simplejson/compat | Bob Ippolito | 2018-04-24 | 7 | -36/+29 |
| |\ | | | | | Simplify the compatibility code. | ||||
| | * | Simplify compatibility code.compat | Serhiy Storchaka | 2018-04-24 | 7 | -36/+29 |
| | | | | | | | | | | | Since minimal supported Python 3 version is 3.3, the u() helper no longer needed. | ||||
| * | | Fix tests in Python 2.5.tempfile-py25 | Serhiy Storchaka | 2018-04-24 | 1 | -9/+18 |
| |/ | | | | NamedTemporaryFile supports the "delete" argument only since 2.6. | ||||
| * | v3.14.0v3.14.0 | Bob Ippolito | 2018-04-21 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #212 from richvdh/rav/defer_is_rawjson_test | Bob Ippolito | 2018-04-09 | 1 | -6/+6 |
| |\ | | | | | Defer is_raw_json test | ||||
| | * | Defer is_raw_json test | Richard van der Hoff | 2018-04-03 | 1 | -6/+6 |
| | | | | | | | | | | | | | Instances of RawJSON are unusual; by moving the test for them to lower in encoder_listencode_obj, we get a 12% performance improvement in my tests by not doing the instanceof test. | ||||
| * | | Remove redundant parts of ESCAPE and ESCAPE_DCT | Richard van der Hoff | 2018-03-29 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | * `\b\f\n\r\t` are all in the range `\x00-\x1f` so can be omitted from ESCAPE * `ESCAPE_DCT[0x2028:0x2029]` is no longer used in `encode_basestring`, and `py_encode_basestring_ascii` handles them via the generic `\uNNNN` code, so these entries can be removed from `ESCAPE_DCT`. | ||||
| * | | documentation updates | Richard van der Hoff | 2018-03-29 | 1 | -1/+1 |
| | | | |||||
| * | | Improve docstring on JSONEncoderForHTML | Richard van der Hoff | 2018-03-29 | 1 | -0/+5 |
| | | | | | | | | | Document the U+2028 and U+2029 behavior. | ||||
| * | | Simplify ESCAPE regexp construction | Richard van der Hoff | 2018-03-29 | 1 | -4/+1 |
| | | | | | | | | | | | Now that we do not include \uNNNN escapes in the regex, we can use a raw string rather than having to double-escape everything. | ||||
| * | | Avoid escaping U+2028 and U+2029 without ensure_ascii | Richard van der Hoff | 2018-03-29 | 3 | -4/+18 |
| |/ | | | | | There is no need to escape U+2028 and U+2029 when ensure_ascii is false, and doing so makes us inconsistent with the standard JSON library. | ||||
| * | Update CHANGES.txt and increment version to 3.13.3 | Bob Ippolito | 2018-03-27 | 1 | -1/+1 |
| | | |||||
| * | Avoid copying strings when encoding | Richard van der Hoff | 2018-03-27 | 2 | -2/+7 |
| | | | | | | | | d782561 introduced a performance regression which means that every string is copied during serialisation, when ensure_ascii is False. This should fix it. | ||||
| * | v3.13.2v3.13.2 | Bob Ippolito | 2017-11-24 | 1 | -1/+1 |
| | | |||||
| * | maybe fix windows 2.x build | Bob Ippolito | 2017-11-24 | 1 | -1/+2 |
| | | |||||
| * | v3.13.1v3.13.1 | Bob Ippolito | 2017-11-24 | 1 | -1/+1 |
| | | |||||
| * | Fix a compile error on 2.x. Closes #193.speedups-compile-error-2.7 | Serhiy Storchaka | 2017-11-24 | 1 | -1/+1 |
| | | |||||
| * | Fix string encoding for Python 2 | Bob Ippolito | 2017-11-23 | 1 | -2/+8 |
| | | |||||
| * | Ensure that encoding text subtypes is consistent with or without speedups. ↵ | Bob Ippolito | 2017-11-23 | 3 | -6/+18 |
| | | | | | Fixes #185 | ||||
| * | Merge pull request #191 from simplejson/type-error-messages | Bob Ippolito | 2017-11-23 | 4 | -5/+27 |
| |\ | | | | | Make TypeError messages contain type name instead of a repr. | ||||
| | * | Add tests.type-error-messages | Serhiy Storchaka | 2017-11-23 | 1 | -1/+18 |
| | | | |||||
| | * | Make TypeError messages contain type name instead of a repr. | Serhiy Storchaka | 2017-11-10 | 3 | -4/+9 |
| | | | | | | | | | | | | | The failure depends on the type, not on the value of an object. This combines CPython's issues 26623 and 24641. | ||||
| * | | Update version, add *.pyd to gitignore | Bob Ippolito | 2017-11-23 | 1 | -1/+1 |
| | | | |||||
| * | | Workarounds for NamedTemporaryFile issues with Windows for tool tests | Bob Ippolito | 2017-11-23 | 1 | -13/+21 |
| | | | |||||
| * | | v3.12.1v3.12.1 | Bob Ippolito | 2017-11-23 | 1 | -1/+1 |
| | | | |||||
| * | | Merge pull request #188 from simplejson/bpo-31505 | Bob Ippolito | 2017-11-20 | 2 | -3/+42 |
| |\ \ | |/ |/| | bpo-31505: Fix an assertion failure in json, in case _json.make_encoder() received a bad encoder() argument. | ||||
| | * | Fix a test.bpo-31505 | Serhiy Storchaka | 2017-11-06 | 1 | -3/+1 |
| | | | |||||
| | * | bpo-31505: Fix an assertion failure in json, in case _json.make_encoder() ↵ | Serhiy Storchaka | 2017-11-06 | 2 | -3/+44 |
| | | | | | | | | | | | | | received a bad encoder() argument. Original patch by Oren Milman. | ||||
| * | | bpo-31095: fix potential crash during GC (#187) | Serhiy Storchaka | 2017-11-06 | 1 | -2/+4 |
| | | | | | | | Original patch by INADA Naoki. | ||||
| * | | Fix a reference leak when sort keys. (#186) | Serhiy Storchaka | 2017-11-06 | 1 | -2/+5 |
| |/ | |||||
| * | Fix #184 threaded import issue, prep v3.12.0v3.12.0 | Bob Ippolito | 2017-11-05 | 6 | -84/+92 |
| | | |||||
| * | v3.11.1fix-173 | Bob Ippolito | 2017-06-19 | 1 | -1/+1 |
| | | |||||
| * | Fix #173 with item_sort_key and add auto-discovery to test suite | Bob Ippolito | 2017-06-19 | 3 | -42/+25 |
| | | |||||
| * | v3.11.0v3.11.0 | Bob Ippolito | 2017-06-18 | 1 | -1/+1 |
| | | |||||
| * | docstring fix in JSONEncoder: use_decimal defaults to True | Jure Cerjak | 2017-06-12 | 1 | -1/+1 |
| | | |||||
