Mercurial > lcfOS
comparison python/ppci/common.py @ 293:6aa721e7b10b
Try to improve build sequence
author | Windel Bouwman |
---|---|
date | Thu, 28 Nov 2013 20:39:37 +0100 |
parents | 534b94b40aa8 |
children | 2c9768114877 |
comparison
equal
deleted
inserted
replaced
292:534b94b40aa8 | 293:6aa721e7b10b |
---|---|
21 self.row = row | 21 self.row = row |
22 self.col = col | 22 self.col = col |
23 self.length = ln | 23 self.length = ln |
24 | 24 |
25 def __repr__(self): | 25 def __repr__(self): |
26 return '{}, {}'.format(self.row, self.col) | 26 return '{}, {}, {}'.format(self.filename, self.row, self.col) |
27 | 27 |
28 | 28 |
29 SourceRange = namedtuple('SourceRange', ['p1', 'p2']) | 29 SourceRange = namedtuple('SourceRange', ['p1', 'p2']) |