[issue31331] IDLE: Move prompts with input.

Louie Lu report at bugs.python.org
Mon Sep 4 08:42:09 EDT 2017


Louie Lu added the comment:

minimum reproduce:

>>> from threading import Timer
>>> Timer(0.1, lambda: print('hello'), ()).start()
>>> 'hello'
a = (
       12,

-------------------

And the expect output should be something like:

>>> from threading import Timer
>>> Timer(0.1, lambda: print('hello'), ()).start()
>>> 'hello'    # No <enter> or other key-input
>>>

or:

>>> from threading import Timer
>>> Timer(0.1, lambda: print('hello'), ()).start()
'hello'
>>>

Right?

----------
nosy: +louielu

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue31331>
_______________________________________


More information about the Python-bugs-list mailing list