Документ взят из кэша поисковой машины. Адрес оригинального документа : http://kodomo.fbb.msu.ru/hg/cca/file/6f328d849ba8/State.py
Дата изменения: Unknown
Дата индексирования: Sun Feb 3 05:25:33 2013
Кодировка:
cca: 6f328d849ba8 State.py

cca

view State.py @ 64:6f328d849ba8

+ mouse motion, save listbox focus
author is_rusinov
date Sat, 11 Dec 2010 14:02:45 +0300
parents fa1a99c88a0b
children 7502b6193014
line source
1 class State(object):
3 def __init__(self, name, symbol, color, nums):
4 #name
5 #symbol
6 #color
7 #nums - next step ondition, list with numbers from 0 to 9
9 self.name = name
10 self.symbol = symbol
11 self.color = color
12 self.nums = nums
14 def next_state(self, num):
15 #num - number of cells with the same state
16 return num in self.nums
18 def __repr__(self):
19 return self.symbol + " " + self.name