summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2003-08-05 06:27:04 (GMT)
committerBrett Cannon <bcannon@gmail.com>2003-08-05 06:27:04 (GMT)
commitb7150a23f75a0fe00256703fb9dc435ade4c4bc2 (patch)
treedf8d23a7f2d2a5ae62eb59379a83c7de4006fd7e
parent106490915b6f1b140cc6ae599cd5dbb71a64b312 (diff)
downloadcpython-b7150a23f75a0fe00256703fb9dc435ade4c4bc2.zip
cpython-b7150a23f75a0fe00256703fb9dc435ade4c4bc2.tar.gz
cpython-b7150a23f75a0fe00256703fb9dc435ade4c4bc2.tar.bz2
Mention caching and better thread-safety for Lib/_strptime.py
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 435dd64..d790fc8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,10 @@ Extension modules
Library
-------
+- _strptime.py now has a behind-the-scense caching mechanism for the most
+ recent TimeRE instance used along with the last five unique directive
+ patterns. The overall module was also made more thread-safe.
+
Tools/Demos
-----------