Lines Matching refs:code
615 # Testing UTF-16 code point order comparisons...
1858 # start bytes of a 2-byte sequence equivalent to code points < 0x7F
1860 # start bytes of a 4-byte sequence equivalent to code points > 0x10FFFF
2293 # UTF-8 must be roundtrip safe for all code points
2443 code = ord(char)
2444 if code < 0x80:
2447 elif code < 0x100:
2450 elif code < 0x10000:
2604 code = textwrap.dedent(f'''
2656 proc = assert_python_failure('-X', 'dev', '-c', code)