Sindbad~EG File Manager
�
'ΜgH4 � � � d dl Z d dlZd dlZd dlZd dlZd dlZdZd� Z G d� dej � Z e
dk( r ej � yy)� Na� # coding: %s
a = 'x'
assert ord(a) == 120
b = '\x01'
assert ord(b) == 1
c = r'\x01'
assert list(map(ord, c)) == [92, 120, 48, 49]
d = '\x81'
assert ord(d) == 0x81
e = r'\x81'
assert list(map(ord, e)) == [92, 120, 56, 49]
f = '\u1881'
assert ord(f) == 0x1881
g = r'\u1881'
assert list(map(ord, g)) == [92, 117, 49, 56, 56, 49]
h = '\U0001d120'
assert ord(h) == 0x1d120
i = r'\U0001d120'
assert list(map(ord, i)) == [92, 85, 48, 48, 48, 49, 100, 49, 50, 48]
c � � t | g� S �N)�bytes)�is �6/usr/local/lib/python3.12/test/test_string_literals.py�byter <