From: Brett Cannon Date: Tue, 5 Aug 2003 06:27:04 +0000 (+0000) Subject: Mention caching and better thread-safety for Lib/_strptime.py X-Git-Tag: v2.4a1~1793 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7150a23f75a0fe00256703fb9dc435ade4c4bc2;p=python Mention caching and better thread-safety for Lib/_strptime.py --- diff --git a/Misc/NEWS b/Misc/NEWS index 435dd643c9..d790fc8e18 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 -----------