Home
last modified time | relevance | path

Searched refs:isprintable (Results 1 – 9 of 9) sorted by relevance

/external/pigweed/pw_build/py/pw_build/
Dgenerated_tests.py169 yield char if char.isprintable() else fr'\x{byte:02x}'
/external/python/cpython3/Lib/test/
Dtest_unicode.py731 self.assertTrue("".isprintable())
732 self.assertTrue(" ".isprintable())
733 self.assertTrue("abcdefg".isprintable())
734 self.assertFalse("abcdefg\n".isprintable())
736 self.assertTrue("\u0374".isprintable())
738 self.assertFalse("\u0378".isprintable())
740 self.assertFalse("\ud800".isprintable())
742 self.assertTrue('\U0001F46F'.isprintable())
743 self.assertFalse('\U000E0020'.isprintable())
/external/python/cpython3/Lib/collections/
D__init__.py1427 def isprintable(self): member in UserString
1428 return self.data.isprintable()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0b1.rst205 casefold(), format_map(), isprintable(), and maketrans(). Patch by Joe
/external/python/cpython3/Lib/
Dast.py1088 if c == "\\" or not c.isprintable():
/external/python/cpython3/Doc/library/
Dcollections.rst1270 ``format_map``, ``isprintable``, and ``maketrans``.
Dstdtypes.rst1751 .. method:: str.isprintable()
/external/python/cpython3/Doc/whatsnew/
D3.5.rst932 :meth:`~str.format_map`, :meth:`~str.isprintable`, and :meth:`~str.maketrans`
/external/python/cpython3/Misc/
DHISTORY15102 - Issue #5126: str.isprintable() returned False for space characters.
16551 - Issue #3282: str.isprintable() should return False for undefined