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 louielu
Recipients louielu, terry.reedy
Date 2017-09-04.12:42:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1504528929.07.0.225460545679.issue31331@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2017-09-04 12:42:09louielusetrecipients: + louielu, terry.reedy
2017-09-04 12:42:09louielusetmessageid: <1504528929.07.0.225460545679.issue31331@psf.upfronthosting.co.za>
2017-09-04 12:42:09louielulinkissue31331 messages
2017-09-04 12:42:08louielucreate