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 marczellm
Recipients marczellm
Date 2014-05-04.08:28:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1399192120.08.0.445730611813.issue21425@psf.upfronthosting.co.za>
In-reply-to
Content
When I run a Python 3.3.4 prompt inside Emacs 24.3 on Windows 7, correct commands are evaluated immediately, but incorrect ones are delayed (I have to press Enter one more time), as seen below:

    >>> 1
    1
    >>> nonsense
    >>>
    Traceback (most recent call last):
    File "<stdin>", line 1, in <module>
    NameError: name 'nonsense' is not defined

Python 2 does not do this. I've filed an Emacs bug report (http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17304) and got the response to try this on the command line (where cat.exe is from an MSYS installation):

    python 2>&1 | cat.exe

and it behaves the same way as in Emacs.
History
Date User Action Args
2014-05-04 08:28:40marczellmsetrecipients: + marczellm
2014-05-04 08:28:40marczellmsetmessageid: <1399192120.08.0.445730611813.issue21425@psf.upfronthosting.co.za>
2014-05-04 08:28:40marczellmlinkissue21425 messages
2014-05-04 08:28:39marczellmcreate