]> granicus.if.org Git - python/commitdiff
Merged revisions 67279 via svnmerge from
authorMartin v. Löwis <martin@v.loewis.de>
Wed, 19 Nov 2008 09:14:30 +0000 (09:14 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Wed, 19 Nov 2008 09:14:30 +0000 (09:14 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67279 | martin.v.loewis | 2008-11-19 10:09:41 +0100 (Mi, 19 Nov 2008) | 2 lines

  Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__
........

Lib/turtle.py
Misc/NEWS

index bcc53ce3dd5c44fae010e10942dc73e9fd23a8a6..6f733745217fea793cd00a47d271e355a5a1a28b 100644 (file)
@@ -357,7 +357,7 @@ class ScrolledCanvas(TK.Frame):
     def __init__(self, master, width=500, height=350,
                                           canvwidth=600, canvheight=500):
         TK.Frame.__init__(self, master, width=width, height=height)
-        self._root = self.winfo_toplevel()
+        self._rootwindow = self.winfo_toplevel()
         self.width, self.height = width, height
         self.canvwidth, self.canvheight = canvwidth, canvheight
         self.bg = "white"
@@ -377,7 +377,7 @@ class ScrolledCanvas(TK.Frame):
         self.hscroll.grid(padx=1, in_ = self, pady=1, row=1,
                 column=0, rowspan=1, columnspan=1, sticky='news')
         self.reset()
-        self._root.bind('<Configure>', self.onResize)
+        self._rootwindow.bind('<Configure>', self.onResize)
 
     def reset(self, canvwidth=None, canvheight=None, bg = None):
         """Ajust canvas and scrollbars according to given canvas size."""
index 45e965bc6d191fa4a55f0de6634a4953e7eb852a..9882957aac92e91cc0010544c9b2a6f7390d6cd1 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #4116: Resolve member name conflict in ScrolledCanvas.__init__.
+
 - Issue #4307: The named tuple that ``inspect.getfullargspec()`` returns now
   uses ``kwonlydefaults`` instead of ``kwdefaults``.