This fix is in living memory of paroneayea

This commit is contained in:
Paul R. Tagliamonte 2013-04-04 21:52:15 -04:00
parent b2406a9d72
commit 9578ae7a57

View File

@ -236,6 +236,9 @@ class String(State):
if char == "\\":
self.nodes.append("\\")
return
if char == "\"":
self.nodes.append("\"")
return
raise LexException("Unknown modifier: `%s'" % (char))