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

Class Nim

Lib/turtledemo/nim.py:203–212  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

201
202
203class Nim(object):
204 CREATED = 0
205 RUNNING = 1
206 OVER = 2
207 def __init__(self, screen):
208 self.state = Nim.CREATED
209 self.screen = screen
210 self.model = NimModel(self)
211 self.view = NimView(self)
212 self.controller = NimController(self)
213
214
215def main():

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected