Mike Miller added the comment:
I found an implementation of this for Windows in case it is needed. Not sure
if it is the best way to do it, as the Console API is rather clumsy. However
this one works to my knowledge:
https://github.com/tartley/colorama/blob/master/colorama/winterm.py#L111
New submission from Mike Miller :
The Ctrl+L as clear-screen hotkey is supported just about everywhere, Unix and
Windows, with the exceptions of cmd.exe and python.exe interactive mode.
As the legacy cmd.exe can be easily replaced, that leaves python.exe. Likely
needs to be configured via
Mike Miller added the comment:
Just as a side note, the patch also works for soft links that point to files
that don't exist. Thanks for getting this fixed!
--
nosy: +Mike Miller
___
Python tracker
<http://bugs.python.org/is
Mike Miller added the comment:
Thanks.
--
___
Python tracker
<http://bugs.python.org/issue24293>
___
___
Python-bugs-list mailing list
Unsubscribe:
New submission from Mike Miller:
The new Windows installer displays itself with an HTML (or perhaps skinned)
interface with hard-coded white background which does not adhere to the desktop
GUI color scheme chosen by the user.
Many times this is only an aesthetic problem, but it may cause the
Mike Miller added the comment:
Ahh, I see ... I didn't explain my issue with much depth in haste.
I don't usually run the test suite when I am in the process of updating
code or docs, only when I'm done, then I check it in.
So I was updating the docs and running pydoc with a l
New submission from Mike Miller :
When pydoc is run from the command line and unable to write a file for a
module because of a syntax error, it would be helpful to return a
non-zero status code as a result.
What it does currently:
C:\>C:\python26\Lib\pydoc.py -w mymod
problem