Mercurial > lcfOS
view python/ppci/common.py @ 186:46d62dadd61b
Improved testsuite
author | Windel Bouwman |
---|---|
date | Sat, 25 May 2013 14:26:25 +0200 |
parents | 8104fc8b5e90 |
children | 6b2bec5653f1 |
line wrap: on
line source
from collections import namedtuple #SourceLocation = namedtuple('SourceLocation', ['row', 'col']) class SourceLocation: def __init__(self, row, col, ln): self.row = row self.col = col self.length = ln SourceRange = namedtuple('SourceRange', ['p1', 'p2'])