Re: [Idle-dev] IDLE shell: Moving prompts to a side-bar

2019-11-03 Thread Beni Cherniavsky-Paskin
Note that unlike terminal, multi-line commands in IDLE are already not copyable into doctests - one needs to manually add `... ` continuation prompts, which is O(n-1) manual work per command; additionally having to insert `>>> ` ups that to O(n) which is not much worse. In an ideal world, it would

Re: [Idle-dev] IDLE shell: Moving prompts to a side-bar

2019-11-03 Thread Tal Einat
On Sun, Nov 3, 2019 at 7:41 PM Beni Cherniavsky-Paskin < [email protected]> wrote: > Note that unlike terminal, multi-line commands in IDLE are already not > copyable into doctests - one needs to manually add `... ` continuation > prompts, which is O(n-1) manual work per command; addition