Correctly handle \_ escape sequence. (#89)

This commit is contained in:
Felix Fontein 2022-05-09 22:09:08 +02:00 committed by GitHub
parent 02ecc0ca9d
commit a90c696589
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 15 deletions

View file

@ -21,7 +21,7 @@ ESCAPE_SEQUENCES = {
b'\\': b'\\',
b'?': b'?',
b'$': b'$',
b'_': b'_',
b'_': b' ',
b'a': b'\a',
b'b': b'\b',
b'f': b'\xFF',