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 Segev Finer
Recipients Segev Finer, eric.smith, martin.panter, maxnoe, paul.moore, steve.dower, tim.golden, zach.ware
Date 2018-07-13.09:22:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531473735.88.0.56676864532.issue34091@psf.upfronthosting.co.za>
In-reply-to
Content
I'd assume this is using ConEmu's ChildGui which means it hacks up a MinTTY window to appear inside ConEmu's GUI. MinTTY doesn't use a real terminal but rather pipes as the processes stdio. Any native (non-MSYS2) Windows program would have a problem with this.

The known workaround is to launch such programs using WinPTY (Available in the MSYS2 pacman), which creates a real console for the program in the background and communicates it's input/output so that it appear in the original console.

Sadly that is a limitation of Windows, as Windows does not supply a proper PTY interface and MSYS2/MinTTY choose not to use something like WinPTY by default.
History
Date User Action Args
2018-07-13 09:22:16Segev Finersetrecipients: + Segev Finer, paul.moore, eric.smith, tim.golden, martin.panter, zach.ware, steve.dower, maxnoe
2018-07-13 09:22:15Segev Finersetmessageid: <1531473735.88.0.56676864532.issue34091@psf.upfronthosting.co.za>
2018-07-13 09:22:15Segev Finerlinkissue34091 messages
2018-07-13 09:22:15Segev Finercreate