[issue4116] name conflict in ScrolledCanvas.__init__() in Lib/turtle.py

2008-11-19 Thread Martin v. Löwis
Martin v. Löwis <[EMAIL PROTECTED]> added the comment: Thanks for the patch. Committed as r67279, r67280, and r67281. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]>

[issue4116] name conflict in ScrolledCanvas.__init__() in Lib/turtle.py

2008-11-18 Thread Gregor Lingl
Gregor Lingl <[EMAIL PROTECTED]> added the comment: I'd like to see this patch accepted and done for Python 2.6.1 and (at the same time) python 3.0 before the last rc is released. So could you dedicate a few minutes to reviewing it. To demonstrate the nature of this issue (and also the nuisance

[issue4116] name conflict in ScrolledCanvas.__init__() in Lib/turtle.py

2008-10-13 Thread Gregor Lingl
Gregor Lingl <[EMAIL PROTECTED]> added the comment: This patch applies to Python 2.6 as well Gregor -- versions: +Python 2.6 ___ Python tracker <[EMAIL PROTECTED]> ___

[issue4116] name conflict in ScrolledCanvas.__init__() in Lib/turtle.py

2008-10-13 Thread Gregor Lingl
New submission from Gregor Lingl <[EMAIL PROTECTED]>: In ScrolledCanvas.__init__() there's a name conflict with a methodname of the parentclass Frame: _root. The bugfix consists in renaming this attribute, which occurs only twice. No change in behaviour at all. Regards, Gregor -- compo