[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2020-10-10 Thread Terry J. Reedy
Change by Terry J. Reedy : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ __

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2020-10-10 Thread Irit Katriel
Irit Katriel added the comment: This seems complete, can it be closed? -- nosy: +iritkatriel ___ Python tracker ___ ___ Python-bugs

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2020-01-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: On the issue, Tal pointed out that SyntaxError leaves a calltip after a new >>> prompt. Also fixed. -- ___ Python tracker ___ _

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2020-01-30 Thread miss-islington
miss-islington added the comment: New changeset 83d3202b92fb4c2fc6df5b035d57f3a1cf715f20 by Miss Islington (bot) in branch '3.8': bpo-38792: Remove IDLE shell calltip before new prompt. (GH-17150) https://github.com/python/cpython/commit/83d3202b92fb4c2fc6df5b035d57f3a1cf715f20 --

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2020-01-30 Thread miss-islington
miss-islington added the comment: New changeset 8d021140866d050f90a4b44c2607f21be43208c1 by Miss Islington (bot) in branch '3.7': bpo-38792: Remove IDLE shell calltip before new prompt. (GH-17150) https://github.com/python/cpython/commit/8d021140866d050f90a4b44c2607f21be43208c1 -- n

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2020-01-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +17661 pull_request: https://github.com/python/cpython/pull/18287 ___ Python tracker ___ __

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2020-01-30 Thread miss-islington
Change by miss-islington : -- pull_requests: +17662 pull_request: https://github.com/python/cpython/pull/18288 ___ Python tracker ___ __

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2020-01-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset bfdeaa37b3df7466624c17f9450d2bd1c3d95edf by Zackery Spytz in branch 'master': bpo-38792: Remove IDLE shell calltip before new prompt. (#17150) https://github.com/python/cpython/commit/bfdeaa37b3df7466624c17f9450d2bd1c3d95edf -- __

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2020-01-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: I verified problem for KeyboardInterrupt and RestartShell but not for a newline that actually runs the statement. In my experiments, if a newline in inserted instead of running, the cursor remains within a call and the calltip should not disappear. ---

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2019-11-14 Thread Tal Einat
Tal Einat added the comment: Hi Zack, thanks for this! This doesn't go far enough, actually; we should make sure to close the calltip in other cases too, such as restarting the shell or hitting return to running a statement / block. -- nosy: +taleinat __

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2019-11-14 Thread Tal Einat
Change by Tal Einat : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2019-11-13 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +16659 stage: -> patch review pull_request: https://github.com/python/cpython/pull/17150 ___ Python tracker ___ __

[issue38792] IDLE calltips may not properly close on KeyboardInterrupt

2019-11-13 Thread Zackery Spytz
New submission from Zackery Spytz : If a KeyboardInterrupt occurs while an IDLE calltip is being displayed, the calltip will persist until a new calltip event. The calltip should be removed immediately in this case. -- assignee: terry.reedy components: IDLE messages: 356580 nosy: Zacker