Home
last modified time | relevance | path

Searched refs:_TimeRE_cache (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_strptime.py527 _strptime._TimeRE_cache.locale_time.lang = "Ni"
528 original_time_re = _strptime._TimeRE_cache
530 self.assertIsNot(original_time_re, _strptime._TimeRE_cache)
549 locale_time_id = _strptime._TimeRE_cache.locale_time
550 _strptime._TimeRE_cache.locale_time.lang = "Ni"
552 self.assertIsNot(locale_time_id, _strptime._TimeRE_cache.locale_time)
564 first_time_re = _strptime._TimeRE_cache
570 second_time_re = _strptime._TimeRE_cache
592 first_time_re = _strptime._TimeRE_cache
601 second_time_re = _strptime._TimeRE_cache
/external/python/cpython2/Lib/
D_strptime.py274 _TimeRE_cache = TimeRE() variable
301 global _TimeRE_cache, _regex_cache
303 locale_time = _TimeRE_cache.locale_time
307 _TimeRE_cache = TimeRE()
309 locale_time = _TimeRE_cache.locale_time
315 format_regex = _TimeRE_cache.compile(format)