Issue #23206: Make `json.dumps(..., ensure_ascii=False) as fast as the default case of ensure_ascii=True`. Patch by Naoki Inada.

This commit is contained in:
Antoine Pitrou 2015-01-11 16:41:01 +01:00
parent 2cae11e87e
commit dc3eaa80d4
5 changed files with 142 additions and 7 deletions

View file

@ -626,6 +626,7 @@ Ali Ikinci
Aaron Iles
Lars Immisch
Bobby Impollonia
Naoki Inada
Meador Inge
Peter Ingebretson
Tony Ingraldi

View file

@ -203,6 +203,9 @@ Core and Builtins
Library
-------
- Issue #23206: Make ``json.dumps(..., ensure_ascii=False)`` as fast as the
default case of ``ensure_ascii=True``. Patch by Naoki Inada.
- Issue #23185: Add math.inf and math.nan constants.
- Issue #23186: Add ssl.SSLObject.shared_ciphers() and