Home
last modified time | relevance | path

Searched refs:_regex_cache (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
D_strptime.py276 _regex_cache = {} variable
301 global _TimeRE_cache, _regex_cache
308 _regex_cache.clear()
310 if len(_regex_cache) > _CACHE_MAX_SIZE:
311 _regex_cache.clear()
312 format_regex = _regex_cache.get(format)
328 _regex_cache[format] = format_regex
/external/python/cpython2/Lib/test/
Dtest_strptime.py531 self.assertEqual(len(_strptime._regex_cache), 1)
536 del _strptime._regex_cache['%d']
540 while len(_strptime._regex_cache) <= _strptime._CACHE_MAX_SIZE:
541 _strptime._regex_cache[bogus_key] = None
544 self.assertEqual(len(_strptime._regex_cache), 1)
Dregrtest.py1150 _strptime._regex_cache.clear()