Searched refs:testrepr (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/ |
D | pydoc.py | 454 testrepr = repr(test) 455 if '\\' in test and '\\' not in replace(testrepr, r'\\', ''): 458 return 'r' + testrepr[0] + self.escape(test) + testrepr[0] 461 self.escape(testrepr)) 1057 testrepr = repr(test) 1058 if '\\' in test and '\\' not in replace(testrepr, r'\\', ''): 1061 return 'r' + testrepr[0] + test + testrepr[0] 1062 return testrepr
|
/external/python/cpython2/Lib/ |
D | pydoc.py | 430 testrepr = repr(test) 431 if '\\' in test and '\\' not in replace(testrepr, r'\\', ''): 434 return 'r' + testrepr[0] + self.escape(test) + testrepr[0] 437 self.escape(testrepr)) 1013 testrepr = repr(test) 1014 if '\\' in test and '\\' not in replace(testrepr, r'\\', ''): 1017 return 'r' + testrepr[0] + test + testrepr[0] 1018 return testrepr
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | _m_a_x_p.py | 117 def testrepr(self): member in table__m_a_x_p
|
/external/python/cpython3/Lib/test/ |
D | test_unicode.py | 114 testrepr = ascii(''.join(map(chr, range(256)))) 115 self.assertEqual(testrepr, latin1repr) 156 testrepr = repr(''.join(map(chr, range(256)))) 157 self.assertEqual(testrepr, latin1repr)
|
/external/python/cpython2/Lib/test/ |
D | test_unicode.py | 112 testrepr = repr(u''.join(map(unichr, xrange(256)))) 113 self.assertEqual(testrepr, latin1repr)
|