We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 094f544 commit a17cf32Copy full SHA for a17cf32
1 file changed
dfint64_patch/extract_strings/from_raw_bytes.py
@@ -15,7 +15,7 @@
15
16
17
def is_allowed(x: int) -> bool:
18
- return x in allowed or (ord(" ") <= x and x not in forbidden)
+ return x in allowed or (ord(" ") <= x < 128 and x not in forbidden)
19
20
21
def possible_to_decode(c: bytes, encoding) -> bool:
0 commit comments