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 pitrou
Recipients marczellm, pitrou
Date 2014-05-10.13:15:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1399727756.12.0.546690662564.issue21425@psf.upfronthosting.co.za>
In-reply-to
Content
This can be reproduced as easily under Linux:

$ ./python 2>&1 | cat
Python 3.5.0a0 (default:17689e43839a+39f2a78f4357+, May  9 2014, 00:30:19) 
[GCC 4.8.1] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> 5
5
>>> 1/0
>>> nonsense
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ZeroDivisionError: division by zero
>>> 
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'nonsense' is not defined
>>>
History
Date User Action Args
2014-05-10 13:15:56pitrousetrecipients: + pitrou, marczellm
2014-05-10 13:15:56pitrousetmessageid: <1399727756.12.0.546690662564.issue21425@psf.upfronthosting.co.za>
2014-05-10 13:15:55pitroulinkissue21425 messages
2014-05-10 13:15:55pitroucreate