We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e03d1b commit 202d5acCopy full SHA for 202d5ac
1 file changed
py/makeqstrdata.py
@@ -116,7 +116,7 @@ def parse_input_headers(infiles):
116
117
def make_bytes(cfg_bytes_len, cfg_bytes_hash, qstr):
118
qhash = compute_hash(qstr, cfg_bytes_hash)
119
- if all(32 <= ord(c) <= 126 and c != '\\' for c in qstr):
+ if all(32 <= ord(c) <= 126 and c != '\\' and c != '"' for c in qstr):
120
# qstr is all printable ASCII so render it as-is (for easier debugging)
121
qlen = len(qstr)
122
qdata = qstr
0 commit comments