Whitespace normalization.

This commit is contained in:
Tim Peters 2006-07-08 19:55:05 +00:00
parent 9575fb241e
commit 63597f129d
1 changed files with 2 additions and 2 deletions

View File

@ -365,8 +365,8 @@ class RawPen:
>>> turtle.circle(120, 180) # half a circle
"""
if extent is None:
extent = self._fullcircle
frac = abs(extent)/self._fullcircle
extent = self._fullcircle
frac = abs(extent)/self._fullcircle
steps = 1+int(min(11+abs(radius)/6.0, 59.0)*frac)
w = 1.0 * extent / steps
w2 = 0.5 * w