This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author benjamin.peterson
Recipients Jim.Jewett, benjamin.peterson, python-dev
Date 2012-01-20.16:00:40
SpamBayes Score 2.4827411e-08
Marked as misclassified No
Message-id <1327075244.22.0.0379446839937.issue13832@psf.upfronthosting.co.za>
In-reply-to
Content
$ ./python 
Python 3.3.0a0 (default:50a4af2ca654+, Jan 20 2012, 10:59:48) 
[GCC 4.5.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> s="""x=5  # comment
... x=6
... """
>>> compile(s, "<blah>", "single")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<blah>", line 1
    x=5  # comment
                 ^
SyntaxError: multiple statements found while compiling a single statement
History
Date User Action Args
2012-01-20 16:00:44benjamin.petersonsetrecipients: + benjamin.peterson, python-dev, Jim.Jewett
2012-01-20 16:00:44benjamin.petersonsetmessageid: <1327075244.22.0.0379446839937.issue13832@psf.upfronthosting.co.za>
2012-01-20 16:00:40benjamin.petersonlinkissue13832 messages
2012-01-20 16:00:40benjamin.petersoncreate