diff --git a/test/Makefile b/test/Makefile index 2ef45d6f..bbda3863 100644 --- a/test/Makefile +++ b/test/Makefile @@ -48,7 +48,7 @@ check-bytecode: #: Check deparsing bytecode only check-bytecode-sans-3.5: - $(PYTHON) test_pythonlib.py --bytecode-2.5 --bytecode-2.6 --bytecode-2.7 \ + $(PYTHON) test_pythonlib.py --bytecode-2.6 --bytecode-2.7 \ --bytecode-3.2 --bytecode-3.3 --bytecode-3.4 #: Check deparsing Python 2.5 diff --git a/test/bytecode_3.4/05_const_map.pyc b/test/bytecode_3.4/05_const_map.pyc new file mode 100644 index 00000000..6e2fab04 Binary files /dev/null and b/test/bytecode_3.4/05_const_map.pyc differ diff --git a/test/bytecode_3.5/05_const_map.pyc b/test/bytecode_3.5/05_const_map.pyc new file mode 100644 index 00000000..36111c46 Binary files /dev/null and b/test/bytecode_3.5/05_const_map.pyc differ diff --git a/test/simple_source/expression/05_const_map.py b/test/simple_source/expression/05_const_map.py new file mode 100644 index 00000000..03bc49c0 --- /dev/null +++ b/test/simple_source/expression/05_const_map.py @@ -0,0 +1,7 @@ +# Addresses a bug in the way Python 3.5+ handles +# creation of map constants +opts = {'highlight': True, + 'start_line': -1, + 'end_line': None + } +print(opts)