Files @ a362783e3bec
Branch filter:

Location: Diana/src/sgfParser/__init__.py - annotation

Laman
exporting SGF back to string, also useful Composed and Point property classes
def skipWhitespace(s,start):
	i=start
	while i<len(s) and s[i].isspace(): i+=1
	return i


class ParserError(Exception):
	def __init__(self,line,col,message):
		self.line=line
		self.col=col
		self.message=message