From 4640e7decef34567e60ed3f37194338043ddae8b Mon Sep 17 00:00:00 2001 From: rocky Date: Sat, 26 Dec 2015 19:32:32 -0500 Subject: [PATCH] Running native on Python 3.3 needs more work --- .travis.yml | 1 - test/Makefile | 2 +- uncompyle6/verify.py | 3 +++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7364441a..ad8155b9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,6 @@ sudo: false python: - '2.6' - '2.7' - - '3.3' - '3.4' install: diff --git a/test/Makefile b/test/Makefile index 82f0a30c..f6672e4b 100644 --- a/test/Makefile +++ b/test/Makefile @@ -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 diff --git a/uncompyle6/verify.py b/uncompyle6/verify.py index 5ea38313..7d6a8fef 100755 --- a/uncompyle6/verify.py +++ b/uncompyle6/verify.py @@ -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()