[issue27769] "Replace All" with up direction and no wrapping replaces only the bottommost of all matching upward entries
New submission from Qwert225: IDLE's "Replace All" option with up direction and disabled "Wrap around" replaces only the bottommost of all matching upward entries instead of replacing all matching upward entries. -- assignee: terry.reedy components: IDLE messages: 272768 nosy: Qwert225, terry.reedy priority: normal severity: normal status: open title: "Replace All" with up direction and no wrapping replaces only the bottommost of all matching upward entries type: behavior versions: Python 3.5 ___ Python tracker <http://bugs.python.org/issue27769> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue27769] IDLE's "Replace All" with up direction and no wrapping replaces one upward and all downward entries instead of replacing all upward entries.
Qwert225 added the comment: EDIT: IDLE's "Replace All" with up direction and no wrapping replaces one upward matching entry and all downward matching entries even though it is set to replace all upward entries. -- title: "Replace All" with up direction and no wrapping replaces only the bottommost of all matching upward entries -> IDLE's "Replace All" with up direction and no wrapping replaces one upward and all downward entries instead of replacing all upward entries. ___ Python tracker <http://bugs.python.org/issue27769> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
[issue28064] String executed inside a function ignores global statements
New submission from Qwert225: String executed inside a function ignores global statements stated before string execution. See the example below - the global variable value should be changed to 'newText' by the function, but is not. Example: variable = 'text' def changeVariable(): global variable exec("variable = 'newText'") changeVariable() print(str(variable)) -- messages: 275657 nosy: Qwert225 priority: normal severity: normal status: open title: String executed inside a function ignores global statements type: behavior versions: Python 3.5 ___ Python tracker <http://bugs.python.org/issue28064> ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com