mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Add missing close parenthesis.
This commit is contained in:
parent
74faed299f
commit
9afdabffa9
2 changed files with 2 additions and 2 deletions
|
@ -964,7 +964,7 @@ class Canvas(Widget):
|
||||||
self._w, 'canvasy', screeny, gridspacing))
|
self._w, 'canvasy', screeny, gridspacing))
|
||||||
def coords(self, *args):
|
def coords(self, *args):
|
||||||
return map(self.tk.getdouble,
|
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={})
|
def _create(self, itemType, args, kw): # Args: (val, val, ..., cnf={})
|
||||||
args = _flatten(args)
|
args = _flatten(args)
|
||||||
cnf = args[-1]
|
cnf = args[-1]
|
||||||
|
|
|
@ -964,7 +964,7 @@ class Canvas(Widget):
|
||||||
self._w, 'canvasy', screeny, gridspacing))
|
self._w, 'canvasy', screeny, gridspacing))
|
||||||
def coords(self, *args):
|
def coords(self, *args):
|
||||||
return map(self.tk.getdouble,
|
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={})
|
def _create(self, itemType, args, kw): # Args: (val, val, ..., cnf={})
|
||||||
args = _flatten(args)
|
args = _flatten(args)
|
||||||
cnf = args[-1]
|
cnf = args[-1]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue