# HG changeset patch # User Windel Bouwman # Date 1362214711 -3600 # Node ID e05b2b216bfce32b90ec64d69f31589f60eba4b7 # Parent b73bc14a3aa3695b0616dcf86ab2ac5ac16b3108 Added common diff -r b73bc14a3aa3 -r e05b2b216bfc python/ppci/common.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python/ppci/common.py Sat Mar 02 09:58:31 2013 +0100 @@ -0,0 +1,6 @@ + +from collections import namedtuple + +SourceLocation = namedtuple('SourceLocation', ['row', 'col']) +SourceRange = namedtuple('SourceRange', ['p1', 'p2']) +