summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-04-25 19:16:06 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2011-04-25 19:16:06 +0200
commit3f829f93ab33ff385688ffa5af3b9376c69a04af (patch)
treede51636845cd2111fc7aa89f2041036eefc2f4b5 /Misc
parent1a4147061ddef1b094da3f71815f0370e3bd7b5a (diff)
downloadcpython-3f829f93ab33ff385688ffa5af3b9376c69a04af.tar.gz
Issue #11856: Speed up parsing of JSON numbers.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 719fc50251..d628516116 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,8 @@ Core and Builtins
Library
-------
+- Issue #11856: Speed up parsing of JSON numbers.
+
- Issue #11005: threading.RLock()._release_save() raises a RuntimeError if the
lock was not acquired.