mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-02-25 07:33:12 +00:00
Running native on Python 3.3 needs more work
This commit is contained in:
parent
ce8c7a4dc2
commit
4640e7dece
@ -5,7 +5,6 @@ sudo: false
|
||||
python:
|
||||
- '2.6'
|
||||
- '2.7'
|
||||
- '3.3'
|
||||
- '3.4'
|
||||
|
||||
install:
|
||||
|
@ -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
|
||||
|
@ -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()
|
||||
|
Loading…
x
Reference in New Issue
Block a user