Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/tkinter/
D__init__.py52 _magic_re = re.compile(r'([\\{}])') variable
64 if _magic_re.search(value):
72 elif _magic_re.search(value):
74 value = _magic_re.sub(r'\\\1', value)
/external/python/cpython2/Lib/lib-tk/
DTkinter.py62 _magic_re = re.compile(r'([\\{}])') variable
74 if _magic_re.search(value):
85 elif _magic_re.search(value):
87 value = _magic_re.sub(r'\\\1', value)