Issue410794

classification
Title: cannot escape trailing " in a """ string
Type: Severity: normal
Components: Core Versions:
Milestone:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: bckfnn Nosy List: bckfnn, bzimmer
Priority: normal Keywords: test failure causes

Created on 2001-03-23.12:48:43 by bzimmer, last changed 2001-04-25.18:47:55 by bckfnn.

Messages
msg292 (view) Author: Brian Zimmer (bzimmer) Date: 2001-03-23.12:48:43
C:\>python
ActivePython 2.0, build 202 (ActiveState Tool Corp.)
based on Python 2.0 (#8, Oct 19 2000, 11:30:05) [MSC 32
bit (Intel)] on win32
Type "copyright", "credits" or "license" for more
information.
>>> s = """this is a string in triple quotes that has a
trailing \""""
>>> s
'this is a string in triple quotes that has a trailing "'
>>>


D:\home\development\src\sourceforge\jython>jython
Jython 2.1a1 on java1.3.0 (JIT: null)
Type "copyright", "credits" or "license" for more
information.
>>> s = """this is a string in triple quotes that has a
trailing \""""
Traceback (innermost last):
  (no code object) at line 0
  File "<console>", line 2
SyntaxError: Lexical error at line 2, column 0.
Encountered: <EOF> after : ""
>>>



msg293 (view) Author: Finn Bock (bckfnn) Date: 2001-04-25.18:47:55
Logged In: YES 
user_id=4201

Fixed in python.jjt: 2.13;
History
Date User Action Args
2001-03-23 12:48:43bzimmercreate