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

Method __init__

Lib/turtledemo/minimal_hanoi.py:17–22  ·  view source on GitHub ↗
(self, n)

Source from the content-addressed store, hash-verified

15
16class Disc(Turtle):
17 def __init__(self, n):
18 Turtle.__init__(self, shape="square", visible=False)
19 self.pu()
20 self.shapesize(1.5, n*1.5, 2) # square-->rectangle
21 self.fillcolor(n/6., 0, 1-n/6.)
22 self.st()
23
24class Tower(list):
25 "Hanoi tower, a subclass of built-in type list"

Callers

nothing calls this directly

Calls 3

shapesizeMethod · 0.80
fillcolorMethod · 0.80
stMethod · 0.80

Tested by

no test coverage detected