don't try assertion rewriting on jython for now

This commit is contained in:
holger krekel
2011-09-21 06:45:40 +02:00
parent eaec527a60
commit fb6fc673b8
4 changed files with 6 additions and 2 deletions

View File

@@ -1,2 +1,2 @@
#
__version__ = '2.1.2.dev1'
__version__ = '2.1.2.dev2'

View File

@@ -38,6 +38,9 @@ def pytest_configure(config):
import ast
except ImportError:
mode = "reinterp"
else:
if sys.platform.startswith('java'):
mode = "reinterp"
if mode != "plain":
_load_modules(mode)
def callbinrepr(op, left, right):