mirror of
https://github.com/frej/fast-export.git
synced 2026-05-07 04:37:40 +02:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6700b164d0 | ||
|
|
13c273f10c |
@@ -434,9 +434,15 @@ def load_mapping(name, filename, mapping_is_raw):
|
|||||||
def process_unicode_escape_sequences(s):
|
def process_unicode_escape_sequences(s):
|
||||||
# Replace unicode escape sequences in the otherwise UTF8-encoded bytestring s with
|
# Replace unicode escape sequences in the otherwise UTF8-encoded bytestring s with
|
||||||
# the UTF8-encoded characters they represent. We need to do an additional
|
# the UTF8-encoded characters they represent. We need to do an additional
|
||||||
# .decode('utf8').encode('unicode-escape') to convert any non-ascii characters into
|
# .decode('utf8').encode('ascii', 'backslashreplace') to convert any non-ascii
|
||||||
# their escape sequences so that the subsequent .decode('unicode-escape') succeeds:
|
# characters into their escape sequences so that the subsequent
|
||||||
return s.decode('utf8').encode('unicode-escape').decode('unicode-escape').encode('utf8')
|
# .decode('unicode-escape') succeeds:
|
||||||
|
return (
|
||||||
|
s.decode('utf8')
|
||||||
|
.encode('ascii', 'backslashreplace')
|
||||||
|
.decode('unicode-escape')
|
||||||
|
.encode('utf8')
|
||||||
|
)
|
||||||
|
|
||||||
def parse_quoted_line(line):
|
def parse_quoted_line(line):
|
||||||
m=quoted_regexp.match(line)
|
m=quoted_regexp.match(line)
|
||||||
|
|||||||
Reference in New Issue
Block a user