From b7150a23f75a0fe00256703fb9dc435ade4c4bc2 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Tue, 5 Aug 2003 06:27:04 +0000 Subject: [PATCH] Mention caching and better thread-safety for Lib/_strptime.py --- Misc/NEWS | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Misc/NEWS b/Misc/NEWS index 435dd643c9f..d790fc8e188 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 -----------