You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-03 00:45:53 +08:00
Running native on Python 3.3 needs more work
This commit is contained in:
@@ -5,7 +5,6 @@ sudo: false
|
|||||||
python:
|
python:
|
||||||
- '2.6'
|
- '2.6'
|
||||||
- '2.7'
|
- '2.7'
|
||||||
- '3.3'
|
|
||||||
- '3.4'
|
- '3.4'
|
||||||
|
|
||||||
install:
|
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
|
check-2.7: check-bytecode check-2.7-ok
|
||||||
|
|
||||||
#: Run working tests from Python 3.3
|
#: 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)
|
$(PYTHON) test_pythonlib.py --bytecode-3.3 --verify $(COMPILE)
|
||||||
|
|
||||||
#: Run working tests from Python 3.4
|
#: 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:
|
elif version == 3.2:
|
||||||
import uncompyle6.scanners.scanner32 as scan
|
import uncompyle6.scanners.scanner32 as scan
|
||||||
scanner = scan.Scanner32()
|
scanner = scan.Scanner32()
|
||||||
|
elif version == 3.3:
|
||||||
|
import uncompyle6.scanners.scanner33 as scan
|
||||||
|
scanner = scan.Scanner33()
|
||||||
elif version == 3.4:
|
elif version == 3.4:
|
||||||
import uncompyle6.scanners.scanner34 as scan
|
import uncompyle6.scanners.scanner34 as scan
|
||||||
scanner = scan.Scanner34()
|
scanner = scan.Scanner34()
|
||||||
|
Reference in New Issue
Block a user