diff --git a/.travis.yml b/.travis.yml index 9b639ae..f44ad67 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,11 +15,11 @@ script: # we add or remove a tox environment. matrix: include: - - env: TOXENV=py36,py37,py38,py39,black,mypy + - env: TOXENV=py36,py37,py38,py39,py310,black,mypy arch: amd64 - - env: TOXENV=py36,py37,py38,py39 + - env: TOXENV=py36,py38,py39,py310 arch: arm64 - - env: TOXENV=py36,py37,py38,py39 + - env: TOXENV=py36,py37,py38,py39,py310 arch: ppc64le - - env: TOXENV=py36,py37,py38,py39 + - env: TOXENV=py36,py37,py38,py39,py310 arch: s390x diff --git a/marshalparser/magic.py b/marshalparser/magic.py index 394da2a..1f63c06 100644 --- a/marshalparser/magic.py +++ b/marshalparser/magic.py @@ -32,6 +32,7 @@ 3423: (3, 9), 3424: (3, 9), 3425: (3, 9), + 3430: (3, 10), } diff --git a/marshalparser/marshalparser.py b/marshalparser/marshalparser.py index 1954823..2569f26 100644 --- a/marshalparser/marshalparser.py +++ b/marshalparser/marshalparser.py @@ -213,9 +213,13 @@ def read_object(self) -> Any: try: self.record_object_result(result) except UnboundLocalError: - raise RuntimeError( - f"Error: type [{type}] is recognized but result is not present" - ) + message = f"type [{type}] is recognized but result is not present." + if not self.python_version: + message += ( + "\nThe error is probably caused by an unknown " + "Python version (magic number) if it's a pyc file." + ) + raise RuntimeError(message) from None # Save the result to the self.references if ref_id is not None: diff --git a/test/python_stdlib/3.10/ElementTree.cpython-310.pyc b/test/python_stdlib/3.10/ElementTree.cpython-310.pyc new file mode 100644 index 0000000..29c4851 Binary files /dev/null and b/test/python_stdlib/3.10/ElementTree.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/__future__.cpython-310.pyc b/test/python_stdlib/3.10/__future__.cpython-310.pyc new file mode 100644 index 0000000..2366049 Binary files /dev/null and b/test/python_stdlib/3.10/__future__.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/__init__.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/__init__.cpython-310.opt-1.pyc new file mode 100644 index 0000000..2ee56ac Binary files /dev/null and b/test/python_stdlib/3.10/__init__.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/__init__.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/__init__.cpython-310.opt-2.pyc new file mode 100644 index 0000000..a9fd400 Binary files /dev/null and b/test/python_stdlib/3.10/__init__.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/__init__.cpython-310.pyc b/test/python_stdlib/3.10/__init__.cpython-310.pyc new file mode 100644 index 0000000..e23a444 Binary files /dev/null and b/test/python_stdlib/3.10/__init__.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/_osx_support.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/_osx_support.cpython-310.opt-2.pyc new file mode 100644 index 0000000..b957edf Binary files /dev/null and b/test/python_stdlib/3.10/_osx_support.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/_threading_local.cpython-310.pyc b/test/python_stdlib/3.10/_threading_local.cpython-310.pyc new file mode 100644 index 0000000..06cccbb Binary files /dev/null and b/test/python_stdlib/3.10/_threading_local.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/_tzpath.cpython-310.pyc b/test/python_stdlib/3.10/_tzpath.cpython-310.pyc new file mode 100644 index 0000000..9474ef4 Binary files /dev/null and b/test/python_stdlib/3.10/_tzpath.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/_zoneinfo.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/_zoneinfo.cpython-310.opt-2.pyc new file mode 100644 index 0000000..bb7ad4d Binary files /dev/null and b/test/python_stdlib/3.10/_zoneinfo.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/ascii.cpython-310.pyc b/test/python_stdlib/3.10/ascii.cpython-310.pyc new file mode 100644 index 0000000..f7d58ec Binary files /dev/null and b/test/python_stdlib/3.10/ascii.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/async_case.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/async_case.cpython-310.opt-2.pyc new file mode 100644 index 0000000..4b7a107 Binary files /dev/null and b/test/python_stdlib/3.10/async_case.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/base_events.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/base_events.cpython-310.opt-1.pyc new file mode 100644 index 0000000..ee4e505 Binary files /dev/null and b/test/python_stdlib/3.10/base_events.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/big5hkscs.cpython-310.pyc b/test/python_stdlib/3.10/big5hkscs.cpython-310.pyc new file mode 100644 index 0000000..11892b1 Binary files /dev/null and b/test/python_stdlib/3.10/big5hkscs.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/calltip_w.cpython-310.pyc b/test/python_stdlib/3.10/calltip_w.cpython-310.pyc new file mode 100644 index 0000000..2e4cbb0 Binary files /dev/null and b/test/python_stdlib/3.10/calltip_w.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/chaos.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/chaos.cpython-310.opt-1.pyc new file mode 100644 index 0000000..464ea54 Binary files /dev/null and b/test/python_stdlib/3.10/chaos.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/chunk.cpython-310.pyc b/test/python_stdlib/3.10/chunk.cpython-310.pyc new file mode 100644 index 0000000..99ef9cf Binary files /dev/null and b/test/python_stdlib/3.10/chunk.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/configparser.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/configparser.cpython-310.opt-2.pyc new file mode 100644 index 0000000..c04ec18 Binary files /dev/null and b/test/python_stdlib/3.10/configparser.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/cp850.pyc b/test/python_stdlib/3.10/cp850.pyc new file mode 100644 index 0000000..bb60a07 Binary files /dev/null and b/test/python_stdlib/3.10/cp850.pyc differ diff --git a/test/python_stdlib/3.10/curses_tests.cpython-310.pyc b/test/python_stdlib/3.10/curses_tests.cpython-310.pyc new file mode 100644 index 0000000..3705ffd Binary files /dev/null and b/test/python_stdlib/3.10/curses_tests.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/datetime.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/datetime.cpython-310.opt-1.pyc new file mode 100644 index 0000000..10b3437 Binary files /dev/null and b/test/python_stdlib/3.10/datetime.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/difflib.cpython-310.pyc b/test/python_stdlib/3.10/difflib.cpython-310.pyc new file mode 100644 index 0000000..7531b41 Binary files /dev/null and b/test/python_stdlib/3.10/difflib.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/dis.cpython-310.pyc b/test/python_stdlib/3.10/dis.cpython-310.pyc new file mode 100644 index 0000000..7bc566e Binary files /dev/null and b/test/python_stdlib/3.10/dis.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/dummy.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/dummy.cpython-310.opt-2.pyc new file mode 100644 index 0000000..190fba5 Binary files /dev/null and b/test/python_stdlib/3.10/dummy.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/dump.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/dump.cpython-310.opt-1.pyc new file mode 100644 index 0000000..7639a63 Binary files /dev/null and b/test/python_stdlib/3.10/dump.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/eintr_tester.cpython-310.pyc b/test/python_stdlib/3.10/eintr_tester.cpython-310.pyc new file mode 100644 index 0000000..b1b39b7 Binary files /dev/null and b/test/python_stdlib/3.10/eintr_tester.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/errors.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/errors.cpython-310.opt-2.pyc new file mode 100644 index 0000000..b69ba9b Binary files /dev/null and b/test/python_stdlib/3.10/errors.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/events.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/events.cpython-310.opt-2.pyc new file mode 100644 index 0000000..fb185b0 Binary files /dev/null and b/test/python_stdlib/3.10/events.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/expatreader.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/expatreader.cpython-310.opt-2.pyc new file mode 100644 index 0000000..b45ddab Binary files /dev/null and b/test/python_stdlib/3.10/expatreader.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/factory.cpython-310.pyc b/test/python_stdlib/3.10/factory.cpython-310.pyc new file mode 100644 index 0000000..1c4f396 Binary files /dev/null and b/test/python_stdlib/3.10/factory.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/filelist.cpython-310.pyc b/test/python_stdlib/3.10/filelist.cpython-310.pyc new file mode 100644 index 0000000..53b0abf Binary files /dev/null and b/test/python_stdlib/3.10/filelist.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/fix_explicit.cpython-310.pyc b/test/python_stdlib/3.10/fix_explicit.cpython-310.pyc new file mode 100644 index 0000000..eaaf2a1 Binary files /dev/null and b/test/python_stdlib/3.10/fix_explicit.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/fix_idioms.cpython-310.pyc b/test/python_stdlib/3.10/fix_idioms.cpython-310.pyc new file mode 100644 index 0000000..d320d93 Binary files /dev/null and b/test/python_stdlib/3.10/fix_idioms.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/fix_import.cpython-310.pyc b/test/python_stdlib/3.10/fix_import.cpython-310.pyc new file mode 100644 index 0000000..456edb4 Binary files /dev/null and b/test/python_stdlib/3.10/fix_import.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/fix_set_literal.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/fix_set_literal.cpython-310.opt-1.pyc new file mode 100644 index 0000000..6c914f0 Binary files /dev/null and b/test/python_stdlib/3.10/fix_set_literal.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/fix_xreadlines.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/fix_xreadlines.cpython-310.opt-1.pyc new file mode 100644 index 0000000..f20d97e Binary files /dev/null and b/test/python_stdlib/3.10/fix_xreadlines.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/fixer_base.cpython-310.pyc b/test/python_stdlib/3.10/fixer_base.cpython-310.pyc new file mode 100644 index 0000000..f3dfb04 Binary files /dev/null and b/test/python_stdlib/3.10/fixer_base.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/fixer_util.cpython-310.pyc b/test/python_stdlib/3.10/fixer_util.cpython-310.pyc new file mode 100644 index 0000000..2c66c44 Binary files /dev/null and b/test/python_stdlib/3.10/fixer_util.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/fork_wait.cpython-310.pyc b/test/python_stdlib/3.10/fork_wait.cpython-310.pyc new file mode 100644 index 0000000..19735a0 Binary files /dev/null and b/test/python_stdlib/3.10/fork_wait.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/formatter.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/formatter.cpython-310.opt-2.pyc new file mode 100644 index 0000000..bff0c38 Binary files /dev/null and b/test/python_stdlib/3.10/formatter.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/framework.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/framework.cpython-310.opt-2.pyc new file mode 100644 index 0000000..7454cf9 Binary files /dev/null and b/test/python_stdlib/3.10/framework.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/handlers.cpython-310.pyc b/test/python_stdlib/3.10/handlers.cpython-310.pyc new file mode 100644 index 0000000..a19759f Binary files /dev/null and b/test/python_stdlib/3.10/handlers.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/heapq.cpython-310.pyc b/test/python_stdlib/3.10/heapq.cpython-310.pyc new file mode 100644 index 0000000..f28cc19 Binary files /dev/null and b/test/python_stdlib/3.10/heapq.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/hz.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/hz.cpython-310.opt-2.pyc new file mode 100644 index 0000000..307903d Binary files /dev/null and b/test/python_stdlib/3.10/hz.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/imghdr.cpython-310.pyc b/test/python_stdlib/3.10/imghdr.cpython-310.pyc new file mode 100644 index 0000000..de464f0 Binary files /dev/null and b/test/python_stdlib/3.10/imghdr.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/input_reader.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/input_reader.cpython-310.opt-1.pyc new file mode 100644 index 0000000..2513747 Binary files /dev/null and b/test/python_stdlib/3.10/input_reader.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/install.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/install.cpython-310.opt-1.pyc new file mode 100644 index 0000000..380373c Binary files /dev/null and b/test/python_stdlib/3.10/install.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/interpreters.cpython-310.pyc b/test/python_stdlib/3.10/interpreters.cpython-310.pyc new file mode 100644 index 0000000..c4dded0 Binary files /dev/null and b/test/python_stdlib/3.10/interpreters.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/koi8_r.pyc b/test/python_stdlib/3.10/koi8_r.pyc new file mode 100644 index 0000000..2b3d0ec Binary files /dev/null and b/test/python_stdlib/3.10/koi8_r.pyc differ diff --git a/test/python_stdlib/3.10/machinery.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/machinery.cpython-310.opt-2.pyc new file mode 100644 index 0000000..75d34be Binary files /dev/null and b/test/python_stdlib/3.10/machinery.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/main.cpython-310.pyc b/test/python_stdlib/3.10/main.cpython-310.pyc new file mode 100644 index 0000000..b967397 Binary files /dev/null and b/test/python_stdlib/3.10/main.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/mapping_tests.cpython-310.pyc b/test/python_stdlib/3.10/mapping_tests.cpython-310.pyc new file mode 100644 index 0000000..f70c840 Binary files /dev/null and b/test/python_stdlib/3.10/mapping_tests.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/minicompat.cpython-310.pyc b/test/python_stdlib/3.10/minicompat.cpython-310.pyc new file mode 100644 index 0000000..f48351d Binary files /dev/null and b/test/python_stdlib/3.10/minicompat.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/parse.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/parse.cpython-310.opt-1.pyc new file mode 100644 index 0000000..7b33393 Binary files /dev/null and b/test/python_stdlib/3.10/parse.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/pgen.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/pgen.cpython-310.opt-2.pyc new file mode 100644 index 0000000..861a640 Binary files /dev/null and b/test/python_stdlib/3.10/pgen.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/planet_and_moon.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/planet_and_moon.cpython-310.opt-2.pyc new file mode 100644 index 0000000..9b888b2 Binary files /dev/null and b/test/python_stdlib/3.10/planet_and_moon.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/popen_spawn_posix.cpython-310.pyc b/test/python_stdlib/3.10/popen_spawn_posix.cpython-310.pyc new file mode 100644 index 0000000..0bd1f31 Binary files /dev/null and b/test/python_stdlib/3.10/popen_spawn_posix.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/pydoc_mod.cpython-310.pyc b/test/python_stdlib/3.10/pydoc_mod.cpython-310.pyc new file mode 100644 index 0000000..c18b947 Binary files /dev/null and b/test/python_stdlib/3.10/pydoc_mod.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/pyshell.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/pyshell.cpython-310.opt-1.pyc new file mode 100644 index 0000000..821cf88 Binary files /dev/null and b/test/python_stdlib/3.10/pyshell.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/pytree.cpython-310.pyc b/test/python_stdlib/3.10/pytree.cpython-310.pyc new file mode 100644 index 0000000..a62f2d3 Binary files /dev/null and b/test/python_stdlib/3.10/pytree.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/quoprimime.cpython-310.pyc b/test/python_stdlib/3.10/quoprimime.cpython-310.pyc new file mode 100644 index 0000000..007ec7b Binary files /dev/null and b/test/python_stdlib/3.10/quoprimime.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/raw_unicode_escape.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/raw_unicode_escape.cpython-310.opt-1.pyc new file mode 100644 index 0000000..8b37459 Binary files /dev/null and b/test/python_stdlib/3.10/raw_unicode_escape.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/re.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/re.cpython-310.opt-1.pyc new file mode 100644 index 0000000..abecdd3 Binary files /dev/null and b/test/python_stdlib/3.10/re.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/redirector.cpython-310.pyc b/test/python_stdlib/3.10/redirector.cpython-310.pyc new file mode 100644 index 0000000..4e90572 Binary files /dev/null and b/test/python_stdlib/3.10/redirector.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/replace.cpython-310.pyc b/test/python_stdlib/3.10/replace.cpython-310.pyc new file mode 100644 index 0000000..8532305 Binary files /dev/null and b/test/python_stdlib/3.10/replace.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/response.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/response.cpython-310.opt-1.pyc new file mode 100644 index 0000000..31a0e9a Binary files /dev/null and b/test/python_stdlib/3.10/response.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/robotparser.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/robotparser.cpython-310.opt-2.pyc new file mode 100644 index 0000000..5690038 Binary files /dev/null and b/test/python_stdlib/3.10/robotparser.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/searchengine.cpython-310.pyc b/test/python_stdlib/3.10/searchengine.cpython-310.pyc new file mode 100644 index 0000000..b11e6eb Binary files /dev/null and b/test/python_stdlib/3.10/searchengine.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/setup.cpython-310.pyc b/test/python_stdlib/3.10/setup.cpython-310.pyc new file mode 100644 index 0000000..11de746 Binary files /dev/null and b/test/python_stdlib/3.10/setup.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/shutil.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/shutil.cpython-310.opt-1.pyc new file mode 100644 index 0000000..9f97426 Binary files /dev/null and b/test/python_stdlib/3.10/shutil.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/shutil.cpython-310.pyc b/test/python_stdlib/3.10/shutil.cpython-310.pyc new file mode 100644 index 0000000..9f97426 Binary files /dev/null and b/test/python_stdlib/3.10/shutil.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/socketserver.cpython-310.pyc b/test/python_stdlib/3.10/socketserver.cpython-310.pyc new file mode 100644 index 0000000..ca93454 Binary files /dev/null and b/test/python_stdlib/3.10/socketserver.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/sortperf.cpython-310.pyc b/test/python_stdlib/3.10/sortperf.cpython-310.pyc new file mode 100644 index 0000000..52bcc47 Binary files /dev/null and b/test/python_stdlib/3.10/sortperf.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/spawn.cpython-310.pyc b/test/python_stdlib/3.10/spawn.cpython-310.pyc new file mode 100644 index 0000000..b1b4afd Binary files /dev/null and b/test/python_stdlib/3.10/spawn.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/squeezer.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/squeezer.cpython-310.opt-1.pyc new file mode 100644 index 0000000..8720595 Binary files /dev/null and b/test/python_stdlib/3.10/squeezer.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/sre_compile.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/sre_compile.cpython-310.opt-2.pyc new file mode 100644 index 0000000..c9b28ca Binary files /dev/null and b/test/python_stdlib/3.10/sre_compile.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/sre_parse.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/sre_parse.cpython-310.opt-2.pyc new file mode 100644 index 0000000..6a3ee83 Binary files /dev/null and b/test/python_stdlib/3.10/sre_parse.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/struct.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/struct.cpython-310.opt-1.pyc new file mode 100644 index 0000000..ab1609d Binary files /dev/null and b/test/python_stdlib/3.10/struct.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/testasync.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/testasync.cpython-310.opt-2.pyc new file mode 100644 index 0000000..3b16498 Binary files /dev/null and b/test/python_stdlib/3.10/testasync.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/testcallable.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/testcallable.cpython-310.opt-2.pyc new file mode 100644 index 0000000..824fd48 Binary files /dev/null and b/test/python_stdlib/3.10/testcallable.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/testhelpers.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/testhelpers.cpython-310.opt-2.pyc new file mode 100644 index 0000000..c5e917e Binary files /dev/null and b/test/python_stdlib/3.10/testhelpers.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/textview.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/textview.cpython-310.opt-2.pyc new file mode 100644 index 0000000..680e8ca Binary files /dev/null and b/test/python_stdlib/3.10/textview.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/textview.cpython-310.pyc b/test/python_stdlib/3.10/textview.cpython-310.pyc new file mode 100644 index 0000000..bc1c17c Binary files /dev/null and b/test/python_stdlib/3.10/textview.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/tf_inherit_check.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/tf_inherit_check.cpython-310.opt-1.pyc new file mode 100644 index 0000000..4a71125 Binary files /dev/null and b/test/python_stdlib/3.10/tf_inherit_check.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/time_hashlib.cpython-310.pyc b/test/python_stdlib/3.10/time_hashlib.cpython-310.pyc new file mode 100644 index 0000000..0ff9048 Binary files /dev/null and b/test/python_stdlib/3.10/time_hashlib.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/token.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/token.cpython-310.opt-2.pyc new file mode 100644 index 0000000..65bd29f Binary files /dev/null and b/test/python_stdlib/3.10/token.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/tokenize.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/tokenize.cpython-310.opt-1.pyc new file mode 100644 index 0000000..3101f7e Binary files /dev/null and b/test/python_stdlib/3.10/tokenize.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/transactions.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/transactions.cpython-310.opt-1.pyc new file mode 100644 index 0000000..8223a2d Binary files /dev/null and b/test/python_stdlib/3.10/transactions.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/unicode_escape.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/unicode_escape.cpython-310.opt-1.pyc new file mode 100644 index 0000000..69aa636 Binary files /dev/null and b/test/python_stdlib/3.10/unicode_escape.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/utf_16.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/utf_16.cpython-310.opt-1.pyc new file mode 100644 index 0000000..edb3e81 Binary files /dev/null and b/test/python_stdlib/3.10/utf_16.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/utf_32_le.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/utf_32_le.cpython-310.opt-2.pyc new file mode 100644 index 0000000..96fb353 Binary files /dev/null and b/test/python_stdlib/3.10/utf_32_le.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/utf_8_sig.cpython-310.pyc b/test/python_stdlib/3.10/utf_8_sig.cpython-310.pyc new file mode 100644 index 0000000..56f9b3f Binary files /dev/null and b/test/python_stdlib/3.10/utf_8_sig.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/versionpredicate.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/versionpredicate.cpython-310.opt-1.pyc new file mode 100644 index 0000000..e9201de Binary files /dev/null and b/test/python_stdlib/3.10/versionpredicate.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/versionpredicate.cpython-310.pyc b/test/python_stdlib/3.10/versionpredicate.cpython-310.pyc new file mode 100644 index 0000000..e9201de Binary files /dev/null and b/test/python_stdlib/3.10/versionpredicate.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/wintypes.cpython-310.pyc b/test/python_stdlib/3.10/wintypes.cpython-310.pyc new file mode 100644 index 0000000..d8ee3a4 Binary files /dev/null and b/test/python_stdlib/3.10/wintypes.cpython-310.pyc differ diff --git a/test/python_stdlib/3.10/yinyang.cpython-310.opt-1.pyc b/test/python_stdlib/3.10/yinyang.cpython-310.opt-1.pyc new file mode 100644 index 0000000..b60a99b Binary files /dev/null and b/test/python_stdlib/3.10/yinyang.cpython-310.opt-1.pyc differ diff --git a/test/python_stdlib/3.10/zipfile.cpython-310.opt-2.pyc b/test/python_stdlib/3.10/zipfile.cpython-310.opt-2.pyc new file mode 100644 index 0000000..0ad63b0 Binary files /dev/null and b/test/python_stdlib/3.10/zipfile.cpython-310.opt-2.pyc differ diff --git a/test/python_stdlib/3.10/zlib_codec.cpython-310.pyc b/test/python_stdlib/3.10/zlib_codec.cpython-310.pyc new file mode 100644 index 0000000..3f890df Binary files /dev/null and b/test/python_stdlib/3.10/zlib_codec.cpython-310.pyc differ diff --git a/tox.ini b/tox.ini index 1d4f549..bbd009b 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = black,mypy,py{36,37,38,39} +envlist = black,mypy,py{36,37,38,39,310} skipsdist = True [testenv]