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

Function draw

Lib/turtledemo/lindenmayer.py:35–43  ·  view source on GitHub ↗
( commands, rules )

Source from the content-addressed store, hash-verified

33 return seq
34
35def draw( commands, rules ):
36 for b in commands:
37 try:
38 rules[b]()
39 except TypeError:
40 try:
41 draw(rules[b], rules)
42 except:
43 pass
44
45
46def main():

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…