mirror of
https://github.com/rizonesoft/Notepad3.git
synced 2026-06-11 21:03:05 +08:00
13 lines
269 B
Python
13 lines
269 B
Python
#!/usr/bin/env python3
|
|
|
|
def GenerateEOLTable():
|
|
table = [0] * 16
|
|
table[ord('\n')] = 1
|
|
table[ord('\r')] = 2
|
|
line = ', '.join(str(c) for c in table)
|
|
line = line + ', // %02X - %02X' % (0, 15)
|
|
print('EOLTable:', line)
|
|
|
|
if __name__ == '__main__':
|
|
GenerateEOLTable()
|