-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't capture the output of help(0) in a python console #23
Comments
I'm seeing a "The system cannot find the path specified." error using winpty. I'm looking into it. |
Probable workaround: mintty sets Long version:
Setting FWIW, I've been considering having the winpty However, So, maybe the right behavior is for |
I tried Still thank you a lot for your effort on this issue. |
Could you tell me the versions of software you're using? In particular, I'd like to know what version of IronPython, winpty, and Cygwin DLL you're using, but other details like OS version, 32/64-bitness, and mintty version might help. Are you're using a precompiled winpty binary? One idea I had -- maybe instead of clearing the TERM variable before invoking
|
Ironpython: 2.7.4 (32bit) Your new idea didn't work either. The |
Do you have a What does pydoc.getpager() evaluate to, for you? For me, with
|
Awesome. After |
I think this issue is fixed now? |
I didn't see a noticeable slowdown in winpty invocation times. This change *did* break IronPython's help() command, as expected, because when winpty reinvokes itself, it sets TERM to cygwin. I think the adapter could unset TERM, but then it wouldn't be set if winpty were used to invoke a Cygwin program. (#23)
I saw this issue in an IronPython prompt of a cygwin session. The cygwin session ran in Mintty. The output of
help(0)
was empty. I could see a very short halt of the prompt but nothing showed. It should print the type information of the int0
. Other kinds of outputs seemed all right.Do you have any idea about the causes to that? Thanks.
The text was updated successfully, but these errors were encountered: