Home
last modified time | relevance | path

Searched refs:matchobj (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Tools/freeze/
Dparsesetup.py26 matchobj = makevardef.match(line)
27 if not matchobj:
29 (name, value) = matchobj.group(1, 2)
68 matchobj = setupvardef.match(line)
69 if matchobj:
70 (name, value) = matchobj.group(1, 2)
/external/python/cpython2/Tools/freeze/
Dparsesetup.py26 matchobj = makevardef.match(line)
27 if not matchobj:
29 (name, value) = matchobj.group(1, 2)
68 matchobj = setupvardef.match(line)
69 if matchobj:
70 (name, value) = matchobj.group(1, 2)
/external/python/cpython3/Doc/tools/extensions/
Descape4chm.py16 def escape(matchobj): argument
17 codepoint = ord(matchobj.group(0))
/external/tensorflow/tensorflow/tools/api/tests/
Dapi_compatibility_test.py123 def _ReplaceCapsWithDash(matchobj): argument
124 match = matchobj.group(0)
143 def _ReplaceDashWithCaps(matchobj): argument
144 match = matchobj.group(0)
/external/python/cpython2/Lib/test/
Dtest_re.py45 def bump_num(self, matchobj): argument
46 int_value = int(matchobj.group(0))
/external/python/cpython2/Doc/library/
Dre.rst669 >>> def dashrepl(matchobj):
670 ... if matchobj.group(0) == '-': return ' '
/external/python/cpython3/Lib/test/
Dtest_re.py86 def bump_num(self, matchobj): argument
87 int_value = int(matchobj.group(0))
/external/python/cpython3/Doc/library/
Dre.rst879 >>> def dashrepl(matchobj):
880 ... if matchobj.group(0) == '-': return ' '