MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/turtledemo/sorting_animate.py:18–24  ·  view source on GitHub ↗
(self, size)

Source from the content-addressed store, hash-verified

16class Block(Turtle):
17
18 def __init__(self, size):
19 self.size = size
20 Turtle.__init__(self, shape="square", visible=False)
21 self.pu()
22 self.shapesize(size * 1.5, 1.5, 2) # square-->rectangle
23 self.fillcolor("black")
24 self.st()
25
26 def glow(self):
27 self.fillcolor("red")

Callers

nothing calls this directly

Calls 3

shapesizeMethod · 0.80
fillcolorMethod · 0.80
stMethod · 0.80

Tested by

no test coverage detected