Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dstringprep.py189 def map_table_b3(code): function
196 al = map_table_b3(a)
198 bl = "".join([map_table_b3(ch) for ch in b])
/external/python/cpython3/Lib/test/
Dtest_stringprep.py19 self.assertTrue(map_table_b3("\u0041"), "\u0061")
20 self.assertTrue(map_table_b3("\u0061"), "\u0061")
/external/python/cpython2/Lib/test/
Dtest_stringprep.py20 self.assertTrue(map_table_b3(u"\u0041"), u"\u0061")
21 self.assertTrue(map_table_b3(u"\u0061"), u"\u0061")
/external/python/cpython2/Tools/unicode/
Dmkstringprep.py196 def map_table_b3(code): function
206 al = map_table_b3(a)
208 bl = u"".join([map_table_b3(ch) for ch in b])
/external/python/cpython3/Tools/unicode/
Dmkstringprep.py202 def map_table_b3(code): function
212 al = map_table_b3(a)
214 bl = "".join([map_table_b3(ch) for ch in b])
/external/python/cpython2/Lib/
Dstringprep.py189 def map_table_b3(code): function
196 al = map_table_b3(a)
198 bl = u"".join([map_table_b3(ch) for ch in b])
/external/python/cpython2/Doc/library/
Dstringprep.rst57 .. function:: map_table_b3(code)
/external/python/cpython3/Doc/library/
Dstringprep.rst58 .. function:: map_table_b3(code)