]> granicus.if.org Git - python/commitdiff
Add missing close parenthesis.
authorGuido van Rossum <guido@python.org>
Tue, 30 Jul 1996 20:16:21 +0000 (20:16 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 30 Jul 1996 20:16:21 +0000 (20:16 +0000)
Lib/lib-tk/Tkinter.py
Lib/tkinter/Tkinter.py

index 0cff594cfab12b4ae36121b363f76af859544776..e33c8c8cd1d85b13397229120bf1c4e985845355 100644 (file)
@@ -964,7 +964,7 @@ class Canvas(Widget):
                        self._w, 'canvasy', screeny, gridspacing))
        def coords(self, *args):
                return map(self.tk.getdouble,
-                           self.tk.splitlist(self._do('coords', args))
+                           self.tk.splitlist(self._do('coords', args)))
        def _create(self, itemType, args, kw): # Args: (val, val, ..., cnf={})
                args = _flatten(args)
                cnf = args[-1]
index 0cff594cfab12b4ae36121b363f76af859544776..e33c8c8cd1d85b13397229120bf1c4e985845355 100755 (executable)
@@ -964,7 +964,7 @@ class Canvas(Widget):
                        self._w, 'canvasy', screeny, gridspacing))
        def coords(self, *args):
                return map(self.tk.getdouble,
-                           self.tk.splitlist(self._do('coords', args))
+                           self.tk.splitlist(self._do('coords', args)))
        def _create(self, itemType, args, kw): # Args: (val, val, ..., cnf={})
                args = _flatten(args)
                cnf = args[-1]