diff options
| author | jordi.saludes <jordi.saludes@upc.edu> | 2010-06-18 11:47:14 +0000 |
|---|---|---|
| committer | jordi.saludes <jordi.saludes@upc.edu> | 2010-06-18 11:47:14 +0000 |
| commit | d313f22d7291d34e990675d84679f0239a7a1e08 (patch) | |
| tree | 3165bdc9c685f1694156a21b82d25f9ddf2cbc4c /contrib/py-bindings/test.py | |
| parent | 606a8807208bfd4e62fcb41c872aae84ae8b4686 (diff) | |
DEBUG is off.
Diffstat (limited to 'contrib/py-bindings/test.py')
| -rw-r--r-- | contrib/py-bindings/test.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/contrib/py-bindings/test.py b/contrib/py-bindings/test.py index 4a8f5bf3e..f70165ac4 100644 --- a/contrib/py-bindings/test.py +++ b/contrib/py-bindings/test.py @@ -10,9 +10,10 @@ samples = [ import re hexre = re.compile('0x[0-9a-f]+:[ ]*') def rmprefix(obj): - s = `obj` - m = hexre.match(s) - return m and s[m.end(0):] + return `obj` +# s = `obj` +# m = hexre.match(s) +# return m and s[m.end(0):] class TestParsing(unittest.TestCase): def setUp(self): |
