[issue13051] Infinite recursion in curses.textpad.Textbox

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +947 ___ Python tracker ___ ___

[issue13051] Infinite recursion in curses.textpad.Textbox

2016-12-28 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Thank you for your contribution Tycho. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue13051] Infinite recursion in curses.textpad.Textbox

2016-12-28 Thread Roundup Robot
Roundup Robot added the comment: New changeset b446a4aab9cf by Serhiy Storchaka in branch '3.5': Issue #13051: Fixed recursion errors in large or resized curses.textpad.Textbox. https://hg.python.org/cpython/rev/b446a4aab9cf New changeset d87771d1c1e6 by Serhiy Storchaka in branch '2.7': Issue

[issue13051] Infinite recursion in curses.textpad.Textbox

2016-12-28 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka ___ Python tracker ___

[issue13051] Infinite recursion in curses.textpad.Textbox

2016-12-17 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I can reproduce the second bug too. Here is updated patch. The main difference is that it preserves maxx and maxy attributes and support them up to date. -- Added file: http://bugs.python.org/file45945/textpad-recursion-fix2.patch

[issue13051] Infinite recursion in curses.textpad.Textbox

2016-12-16 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue13051] Infinite recursion in curses.textpad.Textbox

2016-12-16 Thread Berker Peksag
Berker Peksag added the comment: The patch doesn't apply cleanly anymore so the next step would be to provide an updated patch. By the way, I can reproduce the first bug, but not the second one. If the second bug can't be reproducible anymore, we might need a simpler patch. -- nosy:

[issue13051] Infinite recursion in curses.textpad.Textbox

2016-12-16 Thread David Andersen
David Andersen added the comment: Any progress on this? Its Dec 2016 and this bug is still around. There's a patch and a patch with tests. The problem is well-understood. I'm not sure what the holdup is, but it would be great to get fixed! -- nosy: +rxcomm

[issue13051] Infinite recursion in curses.textpad.Textbox

2012-01-25 Thread Tycho Andersen
Tycho Andersen ty...@tycho.ws added the comment: Hi, any movement on this? -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13051 ___ ___

[issue13051] Infinite recursion in curses.textpad.Textbox

2011-12-20 Thread Tycho Andersen
Tycho Andersen ty...@tycho.ws added the comment: Attached is a patch which contains a testcase as well. A few notes about this testcase: 1. I couldn't figure out how to get it to run correctly after all the other tests had run, so I had to run it first. This seems lame. One possible fix is

[issue13051] Infinite recursion in curses.textpad.Textbox

2011-12-19 Thread Ned Deily
Changes by Ned Deily n...@acm.org: -- nosy: +haypo stage: - patch review ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue13051 ___ ___

[issue13051] Infinite recursion in curses.textpad.Textbox

2011-12-19 Thread Brian Curtin
Brian Curtin br...@python.org added the comment: Would you be able to produce a unit test which fails before your patch is applied, but succeeds after applying your changes? That'll make your changes more likely to get accepted. -- nosy: +brian.curtin

[issue13051] Infinite recursion in curses.textpad.Textbox

2011-09-27 Thread Tycho Andersen
New submission from Tycho Andersen ty...@tycho.ws: The attached patch fixes two bugs which manifest as infinite recursion in _insert_printable_char() of Textbox. First, the previous implementation of _insert_printable_char() used recursion to move characters when inserting a character. Thus,