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 pmpp
Recipients mbussonn, minrk, njs, pmpp, willingc, yselivanov
Date 2018-12-10.18:53:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1544468021.67.0.788709270274.issue34616@psf.upfronthosting.co.za>
In-reply-to
Content
i already use prompt_toolkit on droid as it uses concurrent futures for completion and threads are allowed on that platform, and yeah it is quite good.

but no way to use it on emscripten where cpython is 100% async ( it uses dummy_threading to load asyncio ). best you can do is fill an history buffer with the indented input, eval the whole thing when it's done with PyRun_SimpleString. 

having cpython storing code until sync/async path can  be choosen could save a lot of external hacks with minimal impact on original repl loop, unless somebody is willing to make it *fully* async ( i know i can't ). 

The original repl input loop is really not made for async and i don't know if Sylvain Beuclair's work on "emterpreted" cpython covers also python3.

thx for the pointers anyway and your article on async and ast was inspiration.
History
Date User Action Args
2018-12-10 18:53:41pmppsetrecipients: + pmpp, njs, yselivanov, willingc, minrk, mbussonn
2018-12-10 18:53:41pmppsetmessageid: <1544468021.67.0.788709270274.issue34616@psf.upfronthosting.co.za>
2018-12-10 18:53:41pmpplinkissue34616 messages
2018-12-10 18:53:41pmppcreate