summaryrefslogtreecommitdiffstats
path: root/Lib/turtle.py
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-11-22 19:45:06 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2010-11-22 19:45:06 (GMT)
commit5468f4ff10e4c5b13ae45e5d1be4f07b05c73048 (patch)
tree8a7b9a8e726863ef60e033fdf77cc2ea3e07ed12 /Lib/turtle.py
parent72d5a9d192b83f8bcd08f1507fac93d5768317e8 (diff)
downloadcpython-5468f4ff10e4c5b13ae45e5d1be4f07b05c73048.zip
cpython-5468f4ff10e4c5b13ae45e5d1be4f07b05c73048.tar.gz
cpython-5468f4ff10e4c5b13ae45e5d1be4f07b05c73048.tar.bz2
Merged revisions 86697 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86697 | alexander.belopolsky | 2010-11-22 14:40:51 -0500 (Mon, 22 Nov 2010) | 1 line Issue #6878: Fixed return type of tkinter methods documented to return lists. ........
Diffstat (limited to 'Lib/turtle.py')
-rw-r--r--Lib/turtle.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/turtle.py b/Lib/turtle.py
index e2d2bdc..d8e0094 100644
--- a/Lib/turtle.py
+++ b/Lib/turtle.py
@@ -752,7 +752,7 @@ class TurtleScreenBase(object):
[(0.0, 9.9999999999999982), (0.0, -9.9999999999999982),
(9.9999999999999982, 0.0)]
>>> """
- cl = list(self.cv.coords(item))
+ cl = self.cv.coords(item)
pl = [(cl[i], -cl[i+1]) for i in range(0, len(cl), 2)]
return pl