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
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