[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

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

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2019-06-02 Thread miss-islington
miss-islington added the comment: New changeset b4e0bfd4778e142f037f50c19c4bb5bd123b4641 by Miss Islington (bot) in branch '3.7': bpo-35610: IDLE - Replace .context_use_ps1 with .prompt_last_line (GH-11307) https://github.com/python/cpython/commit/b4e0bfd4778e142f037f50c19c4bb5bd123b4641 --

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2019-06-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +13629 pull_request: https://github.com/python/cpython/pull/13747 ___ Python tracker ___ __

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2019-06-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: New changeset 6bdc4dee01788599808c7858e2fe9fdd72cf6792 by Terry Jan Reedy (Cheryl Sabella) in branch 'master': bpo-35610: IDLE - Replace .context_use_ps1 with .prompt_last_line (GH-11307) https://github.com/python/cpython/commit/6bdc4dee01788599808c7858e2fe9f

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2019-06-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: I don't especially like 'prompt_last_line', but cannot think of anything better. Removing the duplication now will make any future change easier. -- ___ Python tracker ___

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2019-06-02 Thread Terry J. Reedy
Terry J. Reedy added the comment: PR 5968 was previously linked here due to my title editing mistake, soon reversed, on the PR. -- ___ Python tracker ___

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2019-06-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10656 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2019-06-02 Thread Terry J. Reedy
Change by Terry J. Reedy : -- pull_requests: -10657 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2018-12-28 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +10658 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2018-12-28 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch, patch pull_requests: +10656, 10657 ___ Python tracker ___ ___ Python-bugs-list maili

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2018-12-28 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +patch pull_requests: +10656 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue35610] IDLE: replace use of EditorWindow.context_use_ps1

2018-12-28 Thread Terry J. Reedy
New submission from Terry J. Reedy : Attribute .context_use_ps1 is False in EditorWindow and Outwin, True in PyShell. It is use to switch code paths in multiple classes. It is equal to isinstance(self/editwin, PyShell) (which requires an import). It has the same truth value as attribute .p