commit | 9afdabffa9c54d3831182a73321b9edbde195736 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue Jul 30 20:16:21 1996 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue Jul 30 20:16:21 1996 +0000 |
tree | e073d38b7ad780f8ea3eca6289626e294705df53 | |
parent | 74faed299f0a469843189dd90f16370048bbc885 [diff] [blame] |
Add missing close parenthesis.
diff --git a/Lib/tkinter/Tkinter.py b/Lib/tkinter/Tkinter.py index 0cff594..e33c8c8 100755 --- a/Lib/tkinter/Tkinter.py +++ b/Lib/tkinter/Tkinter.py
@@ -964,7 +964,7 @@ 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]