Issue #21812: Trigger immediate transformation in turtle.shapetransform().

This commit is contained in:
Raymond Hettinger 2014-06-22 01:21:51 -07:00
parent f51531e257
commit 6dec4eae53
3 changed files with 5 additions and 1 deletions

View File

@ -2945,7 +2945,7 @@ class RawTurtle(TPen, TNavigator):
self._stretchfactor = a11, a22
self._shearfactor = a12/a22
self._tilt = alfa
self._update()
self.pen(resizemode="user")
def _polytrafo(self, poly):

View File

@ -235,6 +235,7 @@ Ingrid Cheung
Albert Chin-A-Young
Adal Chiriliuc
Matt Chisholm
Lita Cho
Anders Chrigström
Tom Christiansen
Vadim Chugunov

View File

@ -29,6 +29,9 @@ Library
- Issue #21491: socketserver: Fix a race condition in child processes reaping.
- Issue #21812: turtle.shapetransform did not tranform the turtle on the
first call. (Issue identified and fixed by Lita Cho.)
- Issue #21635: The difflib SequenceMatcher.get_matching_blocks() method
cache didn't match the actual result. The former was a list of tuples
and the latter was a list of named tuples.