Re: RuntimeError: input(): lost sys.stdin, g.isMacOS

2017-04-08 Thread Edward K. Ream
On Sat, Apr 8, 2017 at 2:07 AM, tscv11 wrote: > Sorry for the delay. > > *I tried:* > > choice = g.input_("selection ") > print(choice) > > Leo seems to be giving me the same (or a similar) error: > > exception executing script RuntimeError: input(): lost sys.stdin > only 7 lines

Re: RuntimeError: input(): lost sys.stdin, g.isMacOS

2017-04-08 Thread tscv11
Sorry for the delay. *I tried:* choice = g.input_("selection ") print(choice) Leo seems to be giving me the same (or a similar) error: exception executing script RuntimeError: input(): lost sys.stdin only 7 linesline 5848: from leo.core.leoQt import QtCore * line 58

Re: RuntimeError: input(): lost sys.stdin, g.isMacOS

2017-04-07 Thread Edward K. Ream
On Fri, Apr 7, 2017 at 8:14 AM, tscv11 wrote: > Here's a bug report: using a very basic test script with just two lines of > python (shown below) I found that even with an inferior IDE such as IDLE, > the script did ask for input and then print it, whereas Leo coughed up an > error. > ​Have you

RuntimeError: input(): lost sys.stdin, g.isMacOS

2017-04-07 Thread tscv11
Here's a bug report: using a very basic test script with just two lines of python (shown below) I found that even with an inferior IDE such as IDLE, the script did ask for input and then print it, whereas Leo coughed up an error. *Test "script":* choice = input("selection ") print(choi