updated contents from Atlas repo
This commit is contained in:
12
strings-bytes/identifier_norm_writer.py
Normal file
12
strings-bytes/identifier_norm_writer.py
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
src = """
|
||||
café = 1
|
||||
cafe\u0301 = 2
|
||||
names = {(name, tuple(name)):value
|
||||
for name, value in globals().items()
|
||||
if not name.startswith('__')}
|
||||
print(names)
|
||||
"""
|
||||
|
||||
with open('identifier_norm.py', 'tw', encoding='utf8') as out:
|
||||
out.write(src)
|
||||
Reference in New Issue
Block a user