Running native on Python 3.3 needs more work

This commit is contained in:
rocky 2015-12-26 19:32:32 -05:00
parent ce8c7a4dc2
commit 4640e7dece
3 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,6 @@ sudo: false
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
install:

View File

@ -27,7 +27,7 @@ check-2.6: check-bytecode-2.7 check-bytecode-2.5
check-2.7: check-bytecode check-2.7-ok
#: Run working tests from Python 3.3
check-3.3: check-bytecode-3.4 check-bytecode-2.7
check-3.3: check-bytecode-3.3 check-bytecode-2.7
$(PYTHON) test_pythonlib.py --bytecode-3.3 --verify $(COMPILE)
#: Run working tests from Python 3.4

View File

@ -189,6 +189,9 @@ def cmp_code_objects(version, code_obj1, code_obj2, name=''):
elif version == 3.2:
import uncompyle6.scanners.scanner32 as scan
scanner = scan.Scanner32()
elif version == 3.3:
import uncompyle6.scanners.scanner33 as scan
scanner = scan.Scanner33()
elif version == 3.4:
import uncompyle6.scanners.scanner34 as scan
scanner = scan.Scanner34()