Re: [Python-ideas] Suggestion: Clear screen command for the REPL

2016-09-28 Thread אלעזר
"Bash on Ubuntu on windows" responds to CTRL+D just fine. I don't really
know how it works, but it looks like it is based on the Windows terminal
emulator.

Elazar

בתאריך יום ה׳, 29 בספט' 2016, 06:36, מאת Chris Angelico ‏:

> On Thu, Sep 29, 2016 at 12:04 PM, Steven D'Aprano 
> wrote:
> > (Also, it seems a shame that Ctrl-D is EOF in Linux and Mac, but Windows
> > is Ctrl-Z + Return. Can that be standardized to Ctrl-D everywhere?)
>
> Sadly, I suspect not. If you're running in the default Windows
> terminal emulator (the one a normal user will get by invoking
> cmd.exe), you're running under a lot of restrictions, and I believe
> one of them is that you can't get Ctrl-D without an enter.
>
> But it would be very nice to support both.
>
> ChrisA
> ___
> Python-ideas mailing list
> Python-ideas@python.org
> https://mail.python.org/mailman/listinfo/python-ideas
> Code of Conduct: http://python.org/psf/codeofconduct/
>
___
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/

Re: [Python-ideas] Suggestion: Clear screen command for the REPL

2016-09-28 Thread Oleg Broytman
On Thu, Sep 29, 2016 at 12:04:28PM +1000, Steven D'Aprano  
wrote:
> (Also, it seems a shame that Ctrl-D is EOF in Linux and Mac, but Windows 
> is Ctrl-Z + Return. Can that be standardized to Ctrl-D everywhere?)

   I don't think consistency should go that far. Consistency inside the
platform is more important than consistency between platforms, and other
w32 console programs understand [Ctrl]+[Z] as EOF and as far as I know
only [Ctrl]+[Z].

> -- 
> Steve

Oleg.
-- 
 Oleg Broytmanhttp://phdru.name/p...@phdru.name
   Programmers don't die, they just GOSUB without RETURN.
___
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/


Re: [Python-ideas] Suggestion: Clear screen command for the REPL

2016-09-28 Thread Steven D'Aprano
On Tue, Sep 27, 2016 at 10:05:16AM -0700, João Matos wrote:
> Hello,
> 
> 
> It doesn't work in Windows.

What is "it"? Are you talking about Ctrl-L to clear the screen?


Perhaps we should start by adding Ctrl-L as a standard way to clear the 
Python REPL, in the same way that Ctrl-C is the standard way to 
interrupt the interpreter regardless of whether you are using Linux, Mac 
or Windows.

(Also, it seems a shame that Ctrl-D is EOF in Linux and Mac, but Windows 
is Ctrl-Z + Return. Can that be standardized to Ctrl-D everywhere?)


-- 
Steve
___
Python-ideas mailing list
Python-ideas@python.org
https://mail.python.org/mailman/listinfo/python-ideas
Code of Conduct: http://python.org/psf/codeofconduct/