Kaydet (Commit) 8f356818 authored tarafından Barry Warsaw's avatar Barry Warsaw

Added \" to escapes so embedded escaped double quotes are handled

correctly.  Patch suggested by Mads Kiilerich <mk@solit.dk>.
üst b70699bc
......@@ -137,6 +137,7 @@ escapes[ord('\\')] = '\\\\'
escapes[ord('\t')] = '\\t'
escapes[ord('\r')] = '\\r'
escapes[ord('\n')] = '\\n'
escapes[ord('\"')] = '\\"'
def escape(s):
s = list(s)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment