Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
D_strptime.py272 _regex_cache = {} variable
297 global _TimeRE_cache, _regex_cache
301 _regex_cache.clear()
302 if len(_regex_cache) > _CACHE_MAX_SIZE:
303 _regex_cache.clear()
305 format_regex = _regex_cache.get(format)
321 _regex_cache[format] = format_regex
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_strptime.py495 self.assertEqual(len(_strptime._regex_cache), 1)
500 del _strptime._regex_cache['%d']
504 while len(_strptime._regex_cache) <= _strptime._CACHE_MAX_SIZE:
505 _strptime._regex_cache[bogus_key] = None
508 self.assertEqual(len(_strptime._regex_cache), 1)
Dregrtest.py1069 _strptime._regex_cache.clear()