diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-04 19:06:34 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-01-04 19:06:34 +0200 |
commit | 21dfb55dadb01b135edca9b66ca6b53a82bec60a (patch) | |
tree | 4fec4eb3344b950ff31188bd300a32ba870f486e | |
parent | 5830fae26f7dfeb7a263ba5e1b024694930c64ff (diff) |
tests/basics requires python3.3
tests/bytecode/run-tests already uses puthon3.3, so let's just use it here
too.
Fore reference, errors with python 3.2.3:
File "tests/generator1.py", line 12
return None
SyntaxError: 'return' with argument inside generator
File "tests/list_clear.py", line 3, in <module>
x.clear()
AttributeError: 'list' object has no attribute 'clear'
etc.
-rwxr-xr-x | tests/basics/run-tests | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/basics/run-tests b/tests/basics/run-tests index 72e69c2d8..0037b1304 100755 --- a/tests/basics/run-tests +++ b/tests/basics/run-tests @@ -1,7 +1,7 @@ #!/usr/bin/env bash RM="/bin/rm -f" -CPYTHON3=python3 +CPYTHON3=python3.3 MP_PY=../../unix/py numtests=0 |