Author: Armin Rigo <[email protected]>
Branch:
Changeset: r50709:b506f9eca729
Date: 2011-12-19 15:23 +0100
http://bitbucket.org/pypy/pypy/changeset/b506f9eca729/
Log: This was meant to say (2, 6) and not (2.6), I am pretty sure. Fixed,
but then the test fails on top of Python 2.6...
diff --git a/pypy/tool/jitlogparser/test/test_modulefinder.py
b/pypy/tool/jitlogparser/test/test_modulefinder.py
--- a/pypy/tool/jitlogparser/test/test_modulefinder.py
+++ b/pypy/tool/jitlogparser/test/test_modulefinder.py
@@ -3,7 +3,7 @@
import re, sys
def setup_module(mod):
- if sys.version_info[:2] != (2.6):
+ if sys.version_info[:2] != (2, 6):
py.test.skip("Specific python 2.6 tests")
def test_gather_code_py():
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit