├── .circleci ├── config-tox.yml └── config.yml ├── .coveragerc ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── macos.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── .treerc ├── AUTHORS ├── CONTRIBUTE.rst ├── ChangeLog ├── ChangeLog-spell-corrected.diff ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NEWS.md ├── README.rst ├── admin-tools ├── .gitignore ├── check-3.1-3.2-versions.sh ├── check-3.3-3.5-versions.sh ├── check-3.6-3.10-versions.sh ├── check-newest-versions.sh ├── checkout_common.sh ├── git2cl ├── make-dist-2.7.sh ├── make-dist-3.1-3.2.sh ├── make-dist-3.3-3.5.sh ├── make-dist-3.6-3.10.sh ├── make-newest-dist.sh ├── merge-for-2.7.sh ├── merge-for-3.1.sh ├── merge-for-3.3.sh ├── merge-for-3.6.sh ├── print_builtins.py ├── pyenv-2.7-3.5-versions ├── pyenv-3.1-3.2-versions ├── pyenv-3.3-3.5-versions ├── pyenv-3.6-3.10-versions ├── pyenv-newest-versions ├── setup-master.sh ├── setup-python-2.7.sh ├── setup-python-3.1.sh ├── setup-python-3.3.sh └── setup-python-3.6.sh ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── screenshots ├── .bashrc ├── README.md ├── assign.py ├── assign.txt ├── ifelse.txt ├── trepan-xpy-assign.cast ├── trepan-xpy-assign.gif ├── trepan-xpy-ifelse.cast └── trepan-xpy-ifelse.gif ├── setup.cfg ├── setup.py ├── test ├── .gitignore ├── Makefile ├── __init__.py ├── add-single-test.sh ├── add-test.sh ├── add-version.sh ├── bytecode-2.4 │ ├── 007_test_stange_sequence_ops.pyc │ ├── 01_for_else_try_else.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc-notyet │ ├── test_comparisons.pyc │ ├── test_constant.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_different_globals_may_have_different_builtins.pyc-notyet │ ├── test_eval.pyc │ ├── test_exception_match.pyc │ ├── test_exec.pyc │ ├── test_for_loop.pyc │ ├── test_generator_expression.pyc-notyet │ ├── test_global.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_no_builtins.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_recursion.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_while.pyc │ └── test_wraps.pyc ├── bytecode-2.5 │ ├── 007_test_stange_sequence_ops.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc-notyet │ ├── test_comparisons.pyc │ ├── test_constant.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_eval.pyc │ ├── test_exception_match.pyc │ ├── test_exec.pyc │ ├── test_for_loop.pyc │ ├── test_generator_expression.pyc │ ├── test_global.pyc │ ├── test_greater.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_no_builtins.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_recursion.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_while.pyc │ └── test_wraps.pyc ├── bytecode-2.6 │ ├── 007_test_stange_sequence_ops.pyc │ ├── 01_ifelse_listcomp.pyc │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_comparisons.pyc │ ├── test_constant.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_eval.pyc │ ├── test_exception_match.pyc │ ├── test_exec.pyc │ ├── test_for_loop.pyc │ ├── test_generator_expression.pyc │ ├── test_global.pyc │ ├── test_greater.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_no_builtins.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_raise_in_context_manager.pyc │ ├── test_raise_in_with.pyc │ ├── test_recursion.pyc │ ├── test_simple_context_manager.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_while.pyc │ └── test_wraps.pyc ├── bytecode-2.7 │ ├── 008_test_exec.pyc │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_closures.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_constant.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_deleting_names.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_eval.pyc │ ├── test_exception_match.pyc │ ├── test_exec.pyc │ ├── test_for_loop.pyc │ ├── test_generator_expression.pyc │ ├── test_global.pyc │ ├── test_greater.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_no_builtins.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_raise_in_context_manager.pyc │ ├── test_raise_in_with.pyc │ ├── test_recursion.pyc │ ├── test_simple_context_manager.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_while.pyc │ └── test_wraps.pyc ├── bytecode-3.1 │ ├── 001_pass.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ └── fixme │ │ └── 005_test_global.pyc ├── bytecode-3.10 │ ├── 001_pass.pyc │ ├── 001_test_constant.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_comparisions.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_comprehesions.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 010_test_reraise.pyc │ ├── 080_test_closures.pyc │ ├── bad-bytecode │ │ ├── no-return-bad-cpython-310.pyasm │ │ ├── no-return-bad-cpython-310.pyc │ │ ├── short-stack-bad-310.pyc │ │ └── short-stack-bad-cpython-310.pyasm │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_exception_match.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ └── test_subscripting.pyc ├── bytecode-3.11 │ ├── 001_pass.pyc │ ├── 001_test_constant.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_comparisions.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_comprehesions.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 010_test_docstring.pyc │ ├── 010_test_reraise.pyc │ ├── fixme │ │ └── test_deleting_names.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_comparisons.pyc │ ├── test_del.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_locals_and_globals.pyc │ ├── test_pos_args.pyc │ └── test_subscripting.pyc ├── bytecode-3.12 │ ├── 001_pass.pyc │ ├── 001_test_constant.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_comparisions.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ └── 010_test_reraise.pyc ├── bytecode-3.2 │ ├── 001_pass.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 010_test_reraise.pyc │ ├── 080_test_closures.pyc │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_closures.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_constant.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_eval.pyc │ ├── test_exception_match.pyc │ ├── test_exec.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_greater.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_no_builtins.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_pos_args.pyc │ ├── test_raise_in_context_manager.pyc │ ├── test_raise_in_with.pyc │ ├── test_recursion.pyc │ ├── test_simple_context_manager.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_subscripting.pyc │ ├── test_super.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ └── test_wraps.pyc ├── bytecode-3.3 │ ├── 001_pass.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 010_test_reraise.pyc │ ├── 080_test_closures.pyc │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_constant.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_exception_match.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_generator_with_context_manager.pyc │ ├── test_greater.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_no_builtins.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_pos_args.pyc │ ├── test_raise_in_context_manager.pyc │ ├── test_raise_in_with.pyc │ ├── test_recursion.pyc │ ├── test_return_from_generator.pyc │ ├── test_simple_context_manager.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_subscripting.pyc │ ├── test_super.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.4 │ ├── 001_pass.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 010_test_reraise.pyc │ ├── 080_test_closures.pyc │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_constant.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_exception_match.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_generator_with_context_manager.pyc │ ├── test_greater.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_no_builtins.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_pos_args.pyc │ ├── test_raise_in_context_manager.pyc │ ├── test_raise_in_with.pyc │ ├── test_recursion.pyc │ ├── test_return_from_generator.pyc │ ├── test_simple_context_manager.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_subscripting.pyc │ ├── test_super.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.5 │ ├── 001_pass.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 010_test_reraise.pyc │ ├── 080_test_closures.pyc │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_constant.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_exception_match.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_generator_with_context_manager.pyc │ ├── test_greater.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_map_unpack.pyc │ ├── test_no_builtins.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_pos_args.pyc │ ├── test_raise_in_context_manager.pyc │ ├── test_raise_in_with.pyc │ ├── test_recursion.pyc │ ├── test_return_from_generator.pyc │ ├── test_simple_context_manager.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_subscripting.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.6 │ ├── 001_pass.pyc │ ├── 001_test_constant.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 010_test_reraise.pyc │ ├── 080_test_closures.pyc │ ├── fixme │ │ ├── test_closures.pyc │ │ └── test_eval.pyc │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_augmented_assign.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_del.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_docstring.pyc │ ├── test_exception_match.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_map_unpack.pyc │ ├── test_no_builtins.pyc │ ├── test_object_attrs_not-shared_with_class.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_pass.pyc │ ├── test_pos_args.pyc │ ├── test_raise_in_context_manager.pyc │ ├── test_raise_in_with.pyc │ ├── test_recursion.pyc │ ├── test_return_from_generator.pyc │ ├── test_simple_context_manager.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_super.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_var_annotate.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.7 │ ├── 001_pass.pyc │ ├── 001_test_constant.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 010_test_reraise.pyc │ ├── 080_test_closures.pyc │ ├── fixme │ │ └── 008_test_exec.pyc │ ├── test_assign.pyc │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_augmented_assign.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_function_with_args_kwargs.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_del.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_docstring.pyc │ ├── test_exception_match.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_map_unpack.pyc │ ├── test_no_builtins.pyc │ ├── test_partial.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_pass.pyc │ ├── test_pos_args.pyc │ ├── test_raise_in_context_manager.pyc │ ├── test_raise_in_with.pyc │ ├── test_recursion.pyc │ ├── test_return_from_generator.pyc │ ├── test_simple_context_manager.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_super.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_var_annotate.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.8 │ ├── 001_pass.pyc │ ├── 001_test_constant.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_comparisions.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 00_bug_dict_comp.pyc │ ├── 010_test_reraise.pyc │ ├── 080_test_closures.pyc │ ├── fixme │ │ ├── 008_test_exec.pyc │ │ ├── test_closures.pyc │ │ ├── test_eval.pyc │ │ └── test_exec.pyc │ ├── test_at_context_manager_complete.pyc │ ├── test_at_context_manager_simplified.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_augmented_assign.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_closure_vars_from_static_parent.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_continue_in_with.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_del.pyc │ ├── test_deleting_names.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_docstring.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_map_unpack.pyc │ ├── test_no_builtins.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_pass.pyc │ ├── test_pos_args.pyc │ ├── test_recursion.pyc │ ├── test_return_from_generator.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_super.pyc │ └── test_wraps.pyc ├── bytecode-3.9 │ ├── 001_pass.pyc │ ├── 001_test_constant.pyc │ ├── 002_test_assign.pyc │ ├── 002_test_module_docstring.pyc │ ├── 005_test_global.pyc │ ├── 006_test_comparisions.pyc │ ├── 006_test_locals_and_globals.pyc │ ├── 006_test_while.pyc │ ├── 007_test_stange_sequence_ops.pyc │ ├── 008_test_exec.pyc │ ├── 009_test_eval.pyc │ ├── 009_test_for_loop.pyc │ ├── 010_test_reraise.pyc │ ├── 080_test_closures.pyc │ ├── test_attribute_access.pyc │ ├── test_attributes.pyc │ ├── test_augmented_assign.pyc │ ├── test_bound_method_on_falsy_objects.pyc │ ├── test_break_in_with.pyc │ ├── test_building_stuff.pyc │ ├── test_callback.pyc │ ├── test_calling_methods_wrong.pyc │ ├── test_catching_exceptions.pyc │ ├── test_comparisons.pyc │ ├── test_comprehensions.pyc │ ├── test_coverage_issue_92.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_del.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_docstring.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_map_unpack.pyc │ ├── test_no_builtins.pyc │ ├── test_partial_with_kwargs.pyc │ ├── test_pass.pyc │ ├── test_pos_args.pyc │ ├── test_recursion.pyc │ ├── test_return_from_generator.pyc │ ├── test_slice.pyc │ ├── test_slice_stmts.pyc │ ├── test_subscripting.pyc │ ├── test_super.pyc │ └── test_wraps.pyc ├── bytecode-pypy3.8 │ ├── test_callback.pypy38.pyc │ ├── test_constant.pypy38.pyc │ ├── test_defining_functions_with_args_kwargs.pypy38.pyc │ ├── test_different_globals_may_have_different_builtins.pypy38.pyc │ ├── test_fstring.pypy38.pyc │ └── test_strange_sequence_ops.pypy38.pyc ├── bytecode-pypy3.9 │ ├── 001_pass.pypy39.pyc │ ├── 001_test_constant.pypy39.pyc │ └── 002_test_assign.pypy39.pyc ├── bytecode-pypy35 │ ├── test_at_context_manager_complete.pypy35.pyc │ ├── test_at_context_manager_simplified.pypy35.pyc │ ├── test_attribute_access.pypy35.pyc │ ├── test_attributes.pypy35.pyc │ ├── test_bound_method_on_falsy_objects.pypy35.pyc │ ├── test_break_in_with.pypy35.pyc │ ├── test_building_stuff.pypy35.pyc │ ├── test_call_ex_kw.pypy35.pyc │ ├── test_callback.pypy35.pyc │ ├── test_calling_function_with_args_kwargs.pypy35.pyc │ ├── test_calling_methods_wrong.pypy35.pyc │ ├── test_catching_exceptions.pypy35.pyc │ ├── test_closure_vars_from_static_parent.pypy35.pyc │ ├── test_comparisons.pypy35.pyc │ ├── test_comprehensions.pypy35.pyc │ ├── test_constant.pypy35.pyc │ ├── test_continue_in_with.pypy35.pyc │ ├── test_coverage_issue_92.pypy35.pyc │ ├── test_decorator.pypy35.pyc │ ├── test_defining_functions_with_args_kwargs.pypy35.pyc │ ├── test_different_globals_may_have_different_builtins.pypy35.pyc │ ├── test_eval.pypy35.pyc │ ├── test_exception_match.pypy35.pyc │ ├── test_exec.pypy35.pyc │ ├── test_for_loop.pypy35.pyc │ ├── test_fstring.pypy35.pyc │ ├── test_function_calls.pypy35.pyc │ ├── test_generator_expression.pypy35.pyc │ ├── test_global.pypy35.pyc │ ├── test_import.pypy35.pyc │ ├── test_inplace_operators.pypy35.pyc │ ├── test_map_unpack.pypy35.pyc │ ├── test_no_builtins.pypy35.pyc │ ├── test_partial.pypy35.pyc │ ├── test_partial_with_kwargs.pypy35.pyc │ ├── test_pos_args.pypy35.pyc │ ├── test_raise_in_context_manager.pypy35.pyc │ ├── test_raise_in_with.pypy35.pyc │ ├── test_simple_context_manager.pypy35.pyc │ ├── test_slice.pypy35.pyc │ ├── test_slice_stmts.pypy35.pyc │ ├── test_strange_sequence_ops.pypy35.pyc │ ├── test_subscripting.pypy35.pyc │ ├── test_suppressed_raise_in_context_manager.pypy35.pyc │ ├── test_while.pypy35.pyc │ ├── test_wraps.pypy35.pyc │ └── test_yield_from_tuple.pypy35.pyc ├── bytecode-pypy36 │ ├── test_at_context_manager_complete.pypy36.pyc │ ├── test_at_context_manager_simplified.pypy36.pyc │ ├── test_attribute_access.pypy36.pyc │ ├── test_attributes.pypy36.pyc │ ├── test_bound_method_on_falsy_objects.pypy36.pyc │ ├── test_break_in_with.pypy36.pyc │ ├── test_building_stuff.pypy36.pyc │ ├── test_call_ex_kw.pypy36.pyc │ ├── test_callback.pypy36.pyc │ ├── test_calling_function_with_args_kwargs.pypy36.pyc │ ├── test_calling_methods_wrong.pypy36.pyc │ ├── test_catching_exceptions.pypy36.pyc │ ├── test_closure_vars_from_static_parent.pypy36.pyc │ ├── test_comparisons.pypy36.pyc │ ├── test_comprehensions.pypy36.pyc │ ├── test_constant.pypy36.pyc │ ├── test_continue_in_with.pypy36.pyc │ ├── test_coverage_issue_92.pypy36.pyc │ ├── test_decorator.pypy36.pyc │ ├── test_defining_functions_with_args_kwargs.pypy36.pyc │ ├── test_different_globals_may_have_different_builtins.pypy36.pyc │ ├── test_eval.pypy36.pyc │ ├── test_exception_match.pypy36.pyc │ ├── test_exec.pypy36.pyc │ ├── test_for_loop.pypy36.pyc │ ├── test_fstring.pypy36.pyc │ ├── test_function_calls.pypy36.pyc │ ├── test_generator_expression.pypy36.pyc │ ├── test_global.pypy36.pyc │ ├── test_import.pypy36.pyc │ ├── test_inplace_operators.pypy36.pyc │ ├── test_map_unpack.pypy36.pyc │ ├── test_no_builtins.pypy36.pyc │ ├── test_partial.pypy36.pyc │ ├── test_partial_with_kwargs.pypy36.pyc │ ├── test_pos_args.pypy36.pyc │ ├── test_raise_in_context_manager.pypy36.pyc │ ├── test_raise_in_with.pypy36.pyc │ ├── test_return_from_generator.pypy36.pyc │ ├── test_simple_context_manager.pypy36.pyc │ ├── test_slice.pypy36.pyc │ ├── test_slice_stmts.pypy36.pyc │ ├── test_strange_sequence_ops.pypy36.pyc │ ├── test_subscripting.pypy36.pyc │ ├── test_suppressed_raise_in_context_manager.pypy36.pyc │ ├── test_var_annotate.pypy36.pyc │ ├── test_while.pypy36.pyc │ ├── test_wraps.pypy36.pyc │ └── test_yield_from_tuple.pypy36.pyc ├── bytecode-pypy37 │ ├── test_at_context_manager_complete.pypy37.pyc │ ├── test_at_context_manager_simplified.pypy37.pyc │ ├── test_attribute_access.pypy37.pyc │ ├── test_attributes.pypy37.pyc │ ├── test_bound_method_on_falsy_objects.pypy37.pyc │ ├── test_break_in_with.pypy37.pyc │ ├── test_building_stuff.pypy37.pyc │ ├── test_call_ex_kw.pypy37.pyc │ ├── test_callback.pypy37.pyc │ ├── test_calling_function_with_args_kwargs.pypy37.pyc │ ├── test_calling_methods_wrong.pypy37.pyc │ ├── test_catching_exceptions.pypy37.pyc │ ├── test_closure_vars_from_static_parent.pypy37.pyc │ ├── test_comparisons.pypy37.pyc │ ├── test_comprehensions.pypy37.pyc │ ├── test_constant.pypy37.pyc │ ├── test_continue_in_with.pypy37.pyc │ ├── test_coverage_issue_92.pypy37.pyc │ ├── test_decorator.pypy37.pyc │ ├── test_defining_functions_with_args_kwargs.pypy37.pyc │ ├── test_different_globals_may_have_different_builtins.pypy37.pyc │ ├── test_eval.pypy37.pyc │ ├── test_exception_match.pypy37.pyc │ ├── test_exec.pypy37.pyc │ ├── test_for_loop.pypy37.pyc │ ├── test_fstring.pypy37.pyc │ ├── test_function_calls.pypy37.pyc │ ├── test_generator_expression.pypy37.pyc │ ├── test_global.pypy37.pyc │ ├── test_import.pypy37.pyc │ ├── test_inplace_operators.pypy37.pyc │ ├── test_map_unpack.pypy37.pyc │ ├── test_no_builtins.pypy37.pyc │ ├── test_partial.pypy37.pyc │ ├── test_partial_with_kwargs.pypy37.pyc │ ├── test_pos_args.pypy37.pyc │ ├── test_raise_in_context_manager.pypy37.pyc │ ├── test_raise_in_with.pypy37.pyc │ ├── test_return_from_generator.pypy37.pyc │ ├── test_simple_context_manager.pypy37.pyc │ ├── test_slice.pypy37.pyc │ ├── test_slice_stmts.pypy37.pyc │ ├── test_strange_sequence_ops.pypy37.pyc │ ├── test_subscripting.pypy37.pyc │ ├── test_suppressed_raise_in_context_manager.pypy37.pyc │ ├── test_var_annotate.pypy37.pyc │ ├── test_while.pypy37.pyc │ ├── test_wraps.pypy37.pyc │ └── test_yield_from_tuple.pypy37.pyc ├── compile-file.py ├── examples │ ├── .gitignore │ ├── 007_test_stange_sequence_ops.py │ ├── README.md │ ├── basic │ │ ├── test_attribute_access.py │ │ ├── test_bound_method_on_falsy_objects.py │ │ ├── test_building_stuff.py │ │ ├── test_callback.py │ │ ├── test_deleting_names.py │ │ ├── test_import.py │ │ └── test_object_attrs_not-shared_with_class.py │ ├── class │ │ └── test_super.py │ ├── data │ │ ├── 001_test_constant.py │ │ ├── test_attributes.py │ │ ├── test_fstring.py │ │ ├── test_map_unpack.py │ │ └── test_var_annotate.py │ ├── exceptions │ │ ├── 010_test_reraise.py │ │ ├── raise1.py │ │ ├── raise2.py │ │ ├── raise3.py │ │ ├── raise4.py │ │ ├── test_catching_exceptions.py │ │ ├── test_coverage_issue_92.py │ │ └── test_exception_match.py │ ├── expressions │ │ ├── 006_test_comparisions.py │ │ ├── 008_test_comprehesions.py │ │ ├── 009_test_eval.py │ │ ├── test_generator_expression.py │ │ ├── test_inplace_operators.py │ │ ├── test_slice.py │ │ └── test_subscripting.py │ ├── functions │ │ ├── .gitignore │ │ ├── 006_test_locals_and_globals.py │ │ ├── 080_test_closures.py │ │ ├── test_call_ex_kw.py │ │ ├── test_calling_function_with_args_kwargs.py │ │ ├── test_calling_methods_wrong.py │ │ ├── test_closure_vars_from_static_parent.py │ │ ├── test_different_globals_may_have_different_builtins.py │ │ ├── test_function_calls.py │ │ ├── test_generator_with_context_manager.py │ │ ├── test_no_builtins.py │ │ ├── test_partial.py │ │ ├── test_partial_with_kwargs.py │ │ ├── test_pos_args.py │ │ ├── test_recursion.py │ │ ├── test_return_from_generator.py │ │ └── test_wraps.py │ ├── runtests.sh │ ├── stmts │ │ ├── 001_pass.py │ │ ├── 002_test_assign.py │ │ ├── 002_test_module_docstring.py │ │ ├── 005_test_global.py │ │ ├── 006_test_while.py │ │ ├── 008_test_exec.py │ │ ├── 009_test_for_loop.py │ │ ├── 011_test_eval.py │ │ ├── test_async.py │ │ ├── test_augmented_assign.py │ │ ├── test_del.py │ │ ├── test_import.py │ │ ├── test_slice_stmts.py │ │ └── test_yield_from_tuple.py │ ├── test_at_context_manager_simplified.py │ ├── test_decorator.py │ ├── test_defining_functions_with_args_kwargs.py │ ├── test_get_yield_from_iter.py │ ├── test_greater.py │ └── with │ │ ├── test_at_context_manager_complete.py │ │ ├── test_break_in_with.py │ │ ├── test_continue_in_with.py │ │ ├── test_raise_in_context_manager.py │ │ ├── test_raise_in_with.py │ │ ├── test_simple_context_manager.py │ │ └── test_suppressed_raise_in_context_manager.py ├── simple_source │ ├── bug34 │ │ └── 02_make_closure.py │ └── bug38 │ │ └── 00_bug_dict_comp.py ├── stdlib │ ├── .gitignore │ ├── 2.5-exclude.sh │ ├── 2.6-exclude.sh │ ├── 2.7-exclude.sh │ ├── 3.2-exclude.sh │ ├── 3.3-exclude.sh │ ├── 3.4-exclude.sh │ ├── 3.5-exclude.sh │ ├── 3.6-exclude.sh │ ├── 3.7-exclude.sh │ ├── compile-file.py │ └── runtests.sh ├── test-3.1-3.2-bytecode.sh ├── test-3.3-3.5-bytecode.sh ├── test-3.6-3.10-bytecode.sh ├── test-compat.sh ├── test-newest-bytecode.sh ├── test-old-bytecode.sh ├── test-single-version.sh ├── test-uncompyle6-bytecode.sh ├── test_basic.py ├── test_data.py ├── test_functions.py ├── test_with.py └── vmtest.py ├── tox.ini └── xpython ├── .gitignore ├── __init__.py ├── __main__.py ├── builtins.py ├── byteop ├── .gitignore ├── __init__.py ├── byteop.py ├── byteop24.py ├── byteop25.py ├── byteop26.py ├── byteop26pypy.py ├── byteop27.py ├── byteop27pypy.py ├── byteop31.py ├── byteop310.py ├── byteop311.py ├── byteop312.py ├── byteop32.py ├── byteop32pypy.py ├── byteop33.py ├── byteop34.py ├── byteop35.py ├── byteop35pypy.py ├── byteop36.py ├── byteop36pypy.py ├── byteop37.py ├── byteop37pypy.py ├── byteop38.py ├── byteop38pypy.py ├── byteop39.py ├── byteop39pypy.py └── byteoppypy.py ├── execfile.py ├── pyobj.py ├── stdlib ├── __init__.py ├── builtins.py ├── builtins_24.py ├── builtins_25.py ├── builtins_26.py ├── builtins_27.py ├── builtins_31.py ├── builtins_32.py ├── builtins_33.py ├── builtins_36.py ├── builtins_38.py ├── inspect2.py ├── inspect3.py ├── inspectfor32.py ├── itertools_compat.py └── types34.py ├── version.py ├── version_info.py ├── vm.py └── vmtrace.py /.circleci/config-tox.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.circleci/config-tox.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /.treerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/.treerc -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/CONTRIBUTE.rst -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog-spell-corrected.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/ChangeLog-spell-corrected.diff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/README.rst -------------------------------------------------------------------------------- /admin-tools/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | -------------------------------------------------------------------------------- /admin-tools/check-3.1-3.2-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/check-3.1-3.2-versions.sh -------------------------------------------------------------------------------- /admin-tools/check-3.3-3.5-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/check-3.3-3.5-versions.sh -------------------------------------------------------------------------------- /admin-tools/check-3.6-3.10-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/check-3.6-3.10-versions.sh -------------------------------------------------------------------------------- /admin-tools/check-newest-versions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/check-newest-versions.sh -------------------------------------------------------------------------------- /admin-tools/checkout_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/checkout_common.sh -------------------------------------------------------------------------------- /admin-tools/git2cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/git2cl -------------------------------------------------------------------------------- /admin-tools/make-dist-2.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/make-dist-2.7.sh -------------------------------------------------------------------------------- /admin-tools/make-dist-3.1-3.2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/make-dist-3.1-3.2.sh -------------------------------------------------------------------------------- /admin-tools/make-dist-3.3-3.5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/make-dist-3.3-3.5.sh -------------------------------------------------------------------------------- /admin-tools/make-dist-3.6-3.10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/make-dist-3.6-3.10.sh -------------------------------------------------------------------------------- /admin-tools/make-newest-dist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/make-newest-dist.sh -------------------------------------------------------------------------------- /admin-tools/merge-for-2.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/merge-for-2.7.sh -------------------------------------------------------------------------------- /admin-tools/merge-for-3.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/merge-for-3.1.sh -------------------------------------------------------------------------------- /admin-tools/merge-for-3.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/merge-for-3.3.sh -------------------------------------------------------------------------------- /admin-tools/merge-for-3.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/merge-for-3.6.sh -------------------------------------------------------------------------------- /admin-tools/print_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/print_builtins.py -------------------------------------------------------------------------------- /admin-tools/pyenv-2.7-3.5-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/pyenv-2.7-3.5-versions -------------------------------------------------------------------------------- /admin-tools/pyenv-3.1-3.2-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/pyenv-3.1-3.2-versions -------------------------------------------------------------------------------- /admin-tools/pyenv-3.3-3.5-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/pyenv-3.3-3.5-versions -------------------------------------------------------------------------------- /admin-tools/pyenv-3.6-3.10-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/pyenv-3.6-3.10-versions -------------------------------------------------------------------------------- /admin-tools/pyenv-newest-versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/pyenv-newest-versions -------------------------------------------------------------------------------- /admin-tools/setup-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/setup-master.sh -------------------------------------------------------------------------------- /admin-tools/setup-python-2.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/setup-python-2.7.sh -------------------------------------------------------------------------------- /admin-tools/setup-python-3.1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/setup-python-3.1.sh -------------------------------------------------------------------------------- /admin-tools/setup-python-3.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/setup-python-3.3.sh -------------------------------------------------------------------------------- /admin-tools/setup-python-3.6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/admin-tools/setup-python-3.6.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | pre-commit 3 | tox 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | nose 2 | six>=1.4 3 | xdis 4 | -------------------------------------------------------------------------------- /screenshots/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/screenshots/.bashrc -------------------------------------------------------------------------------- /screenshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/screenshots/README.md -------------------------------------------------------------------------------- /screenshots/assign.py: -------------------------------------------------------------------------------- 1 | x, y = 2, 3 2 | x **= y 3 | -------------------------------------------------------------------------------- /screenshots/assign.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/screenshots/assign.txt -------------------------------------------------------------------------------- /screenshots/ifelse.txt: -------------------------------------------------------------------------------- 1 | trepan-xpy -x -c '6 if __name__ != "__main__" else 10' 2 | -------------------------------------------------------------------------------- /screenshots/trepan-xpy-assign.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/screenshots/trepan-xpy-assign.cast -------------------------------------------------------------------------------- /screenshots/trepan-xpy-assign.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/screenshots/trepan-xpy-assign.gif -------------------------------------------------------------------------------- /screenshots/trepan-xpy-ifelse.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/screenshots/trepan-xpy-ifelse.cast -------------------------------------------------------------------------------- /screenshots/trepan-xpy-ifelse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/screenshots/trepan-xpy-ifelse.gif -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/setup.py -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | /*~ 2 | /.python-version 3 | /bytecode*/*.pyasm 4 | -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/add-single-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/add-single-test.sh -------------------------------------------------------------------------------- /test/add-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/add-test.sh -------------------------------------------------------------------------------- /test/add-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/add-version.sh -------------------------------------------------------------------------------- /test/bytecode-2.4/01_for_else_try_else.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/01_for_else_try_else.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.4/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.5/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/01_ifelse_listcomp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/01_ifelse_listcomp.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.6/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_deleting_names.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_deleting_names.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-2.7/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.1/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.1/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.1/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.1/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.1/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.1/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.1/006_test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.1/006_test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.1/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.1/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.1/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.1/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.1/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.1/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.1/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.1/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.1/fixme/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.1/fixme/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/001_test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/001_test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/006_test_comparisions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/006_test_comparisions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/008_test_comprehesions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/008_test_comprehesions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/080_test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/080_test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.10/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/001_test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/001_test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/006_test_comparisions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/006_test_comparisions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/008_test_comprehesions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/008_test_comprehesions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/010_test_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/010_test_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/fixme/test_deleting_names.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/fixme/test_deleting_names.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_del.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_del.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.11/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/001_test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/001_test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/006_test_comparisions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/006_test_comparisions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.12/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.12/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/006_test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/006_test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/080_test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/080_test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.2/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/006_test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/006_test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/080_test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/080_test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_return_from_generator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.3/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/006_test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/006_test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/080_test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/080_test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_return_from_generator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.4/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/006_test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/006_test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/080_test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/080_test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_return_from_generator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.5/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/001_test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/001_test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/006_test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/006_test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/080_test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/080_test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/fixme/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/fixme/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/fixme/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/fixme/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_augmented_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_augmented_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_del.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_del.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_return_from_generator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_var_annotate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_var_annotate.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.6/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/001_test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/001_test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/006_test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/006_test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/080_test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/080_test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/fixme/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/fixme/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_augmented_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_augmented_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_del.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_del.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_return_from_generator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_var_annotate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_var_annotate.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.7/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/001_test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/001_test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/006_test_comparisions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/006_test_comparisions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/006_test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/006_test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/00_bug_dict_comp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/00_bug_dict_comp.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/080_test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/080_test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/fixme/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/fixme/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/fixme/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/fixme/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/fixme/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/fixme/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/fixme/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/fixme/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_augmented_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_augmented_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_del.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_del.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_deleting_names.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_deleting_names.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_return_from_generator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.8/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/001_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/001_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/001_test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/001_test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/002_test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/002_test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/002_test_module_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/002_test_module_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/005_test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/005_test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/006_test_comparisions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/006_test_comparisions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/006_test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/006_test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/006_test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/006_test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/008_test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/008_test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/009_test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/009_test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/009_test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/009_test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/010_test_reraise.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/010_test_reraise.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/080_test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/080_test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_augmented_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_augmented_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_del.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_del.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_return_from_generator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-3.9/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy3.8/test_callback.pypy38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy3.8/test_callback.pypy38.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy3.8/test_constant.pypy38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy3.8/test_constant.pypy38.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy3.8/test_fstring.pypy38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy3.8/test_fstring.pypy38.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy3.9/001_pass.pypy39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy3.9/001_pass.pypy39.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy3.9/002_test_assign.pypy39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy3.9/002_test_assign.pypy39.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_attributes.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_attributes.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_call_ex_kw.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_call_ex_kw.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_callback.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_callback.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_comparisons.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_comparisons.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_constant.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_constant.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_decorator.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_decorator.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_eval.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_eval.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_exec.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_exec.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_for_loop.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_for_loop.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_fstring.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_fstring.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_global.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_global.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_import.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_import.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_map_unpack.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_map_unpack.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_no_builtins.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_no_builtins.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_partial.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_partial.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_pos_args.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_pos_args.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_slice.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_slice.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_slice_stmts.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_slice_stmts.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_subscripting.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_subscripting.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_while.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_while.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_wraps.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy35/test_wraps.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_attributes.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_attributes.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_call_ex_kw.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_call_ex_kw.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_callback.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_callback.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_comparisons.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_comparisons.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_constant.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_constant.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_decorator.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_decorator.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_eval.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_eval.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_exec.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_exec.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_for_loop.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_for_loop.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_fstring.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_fstring.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_global.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_global.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_import.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_import.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_map_unpack.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_map_unpack.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_partial.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_partial.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_pos_args.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_pos_args.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_slice.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_slice.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_while.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_while.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_wraps.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy36/test_wraps.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_callback.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_callback.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_constant.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_constant.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_decorator.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_decorator.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_eval.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_eval.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_exec.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_exec.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_for_loop.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_for_loop.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_fstring.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_fstring.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_global.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_global.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_import.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_import.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_partial.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_partial.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_pos_args.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_pos_args.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_slice.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_slice.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_while.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_while.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_wraps.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/bytecode-pypy37/test_wraps.pypy37.pyc -------------------------------------------------------------------------------- /test/compile-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/compile-file.py -------------------------------------------------------------------------------- /test/examples/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | /*~ 3 | -------------------------------------------------------------------------------- /test/examples/007_test_stange_sequence_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/007_test_stange_sequence_ops.py -------------------------------------------------------------------------------- /test/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/README.md -------------------------------------------------------------------------------- /test/examples/basic/test_attribute_access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/basic/test_attribute_access.py -------------------------------------------------------------------------------- /test/examples/basic/test_building_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/basic/test_building_stuff.py -------------------------------------------------------------------------------- /test/examples/basic/test_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/basic/test_callback.py -------------------------------------------------------------------------------- /test/examples/basic/test_deleting_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/basic/test_deleting_names.py -------------------------------------------------------------------------------- /test/examples/basic/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/basic/test_import.py -------------------------------------------------------------------------------- /test/examples/class/test_super.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/class/test_super.py -------------------------------------------------------------------------------- /test/examples/data/001_test_constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/data/001_test_constant.py -------------------------------------------------------------------------------- /test/examples/data/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/data/test_attributes.py -------------------------------------------------------------------------------- /test/examples/data/test_fstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/data/test_fstring.py -------------------------------------------------------------------------------- /test/examples/data/test_map_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/data/test_map_unpack.py -------------------------------------------------------------------------------- /test/examples/data/test_var_annotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/data/test_var_annotate.py -------------------------------------------------------------------------------- /test/examples/exceptions/010_test_reraise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/exceptions/010_test_reraise.py -------------------------------------------------------------------------------- /test/examples/exceptions/raise1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/exceptions/raise1.py -------------------------------------------------------------------------------- /test/examples/exceptions/raise2.py: -------------------------------------------------------------------------------- 1 | # This is a top-level raise 2 | 1 / 0 3 | -------------------------------------------------------------------------------- /test/examples/exceptions/raise3.py: -------------------------------------------------------------------------------- 1 | assert False 2 | -------------------------------------------------------------------------------- /test/examples/exceptions/raise4.py: -------------------------------------------------------------------------------- 1 | assert False, "don't give up" 2 | -------------------------------------------------------------------------------- /test/examples/expressions/009_test_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/expressions/009_test_eval.py -------------------------------------------------------------------------------- /test/examples/expressions/test_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/expressions/test_slice.py -------------------------------------------------------------------------------- /test/examples/expressions/test_subscripting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/expressions/test_subscripting.py -------------------------------------------------------------------------------- /test/examples/functions/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | -------------------------------------------------------------------------------- /test/examples/functions/080_test_closures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/functions/080_test_closures.py -------------------------------------------------------------------------------- /test/examples/functions/test_call_ex_kw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/functions/test_call_ex_kw.py -------------------------------------------------------------------------------- /test/examples/functions/test_function_calls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/functions/test_function_calls.py -------------------------------------------------------------------------------- /test/examples/functions/test_no_builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/functions/test_no_builtins.py -------------------------------------------------------------------------------- /test/examples/functions/test_partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/functions/test_partial.py -------------------------------------------------------------------------------- /test/examples/functions/test_pos_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/functions/test_pos_args.py -------------------------------------------------------------------------------- /test/examples/functions/test_recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/functions/test_recursion.py -------------------------------------------------------------------------------- /test/examples/functions/test_wraps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/functions/test_wraps.py -------------------------------------------------------------------------------- /test/examples/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/runtests.sh -------------------------------------------------------------------------------- /test/examples/stmts/001_pass.py: -------------------------------------------------------------------------------- 1 | # RUNNABLE! 2 | pass 3 | -------------------------------------------------------------------------------- /test/examples/stmts/002_test_assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/002_test_assign.py -------------------------------------------------------------------------------- /test/examples/stmts/005_test_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/005_test_global.py -------------------------------------------------------------------------------- /test/examples/stmts/006_test_while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/006_test_while.py -------------------------------------------------------------------------------- /test/examples/stmts/008_test_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/008_test_exec.py -------------------------------------------------------------------------------- /test/examples/stmts/009_test_for_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/009_test_for_loop.py -------------------------------------------------------------------------------- /test/examples/stmts/011_test_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/011_test_eval.py -------------------------------------------------------------------------------- /test/examples/stmts/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/test_async.py -------------------------------------------------------------------------------- /test/examples/stmts/test_augmented_assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/test_augmented_assign.py -------------------------------------------------------------------------------- /test/examples/stmts/test_del.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/test_del.py -------------------------------------------------------------------------------- /test/examples/stmts/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/test_import.py -------------------------------------------------------------------------------- /test/examples/stmts/test_slice_stmts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/test_slice_stmts.py -------------------------------------------------------------------------------- /test/examples/stmts/test_yield_from_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/stmts/test_yield_from_tuple.py -------------------------------------------------------------------------------- /test/examples/test_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/test_decorator.py -------------------------------------------------------------------------------- /test/examples/test_get_yield_from_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/test_get_yield_from_iter.py -------------------------------------------------------------------------------- /test/examples/test_greater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/test_greater.py -------------------------------------------------------------------------------- /test/examples/with/test_break_in_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/with/test_break_in_with.py -------------------------------------------------------------------------------- /test/examples/with/test_continue_in_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/with/test_continue_in_with.py -------------------------------------------------------------------------------- /test/examples/with/test_raise_in_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/examples/with/test_raise_in_with.py -------------------------------------------------------------------------------- /test/simple_source/bug34/02_make_closure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/simple_source/bug34/02_make_closure.py -------------------------------------------------------------------------------- /test/simple_source/bug38/00_bug_dict_comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/simple_source/bug38/00_bug_dict_comp.py -------------------------------------------------------------------------------- /test/stdlib/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | -------------------------------------------------------------------------------- /test/stdlib/2.5-exclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/2.5-exclude.sh -------------------------------------------------------------------------------- /test/stdlib/2.6-exclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/2.6-exclude.sh -------------------------------------------------------------------------------- /test/stdlib/2.7-exclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/2.7-exclude.sh -------------------------------------------------------------------------------- /test/stdlib/3.2-exclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/3.2-exclude.sh -------------------------------------------------------------------------------- /test/stdlib/3.3-exclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/3.3-exclude.sh -------------------------------------------------------------------------------- /test/stdlib/3.4-exclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/3.4-exclude.sh -------------------------------------------------------------------------------- /test/stdlib/3.5-exclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/3.5-exclude.sh -------------------------------------------------------------------------------- /test/stdlib/3.6-exclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/3.6-exclude.sh -------------------------------------------------------------------------------- /test/stdlib/3.7-exclude.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/3.7-exclude.sh -------------------------------------------------------------------------------- /test/stdlib/compile-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/compile-file.py -------------------------------------------------------------------------------- /test/stdlib/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/stdlib/runtests.sh -------------------------------------------------------------------------------- /test/test-3.1-3.2-bytecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test-3.1-3.2-bytecode.sh -------------------------------------------------------------------------------- /test/test-3.3-3.5-bytecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test-3.3-3.5-bytecode.sh -------------------------------------------------------------------------------- /test/test-3.6-3.10-bytecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test-3.6-3.10-bytecode.sh -------------------------------------------------------------------------------- /test/test-compat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test-compat.sh -------------------------------------------------------------------------------- /test/test-newest-bytecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test-newest-bytecode.sh -------------------------------------------------------------------------------- /test/test-old-bytecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test-old-bytecode.sh -------------------------------------------------------------------------------- /test/test-single-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test-single-version.sh -------------------------------------------------------------------------------- /test/test-uncompyle6-bytecode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test-uncompyle6-bytecode.sh -------------------------------------------------------------------------------- /test/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test_basic.py -------------------------------------------------------------------------------- /test/test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test_data.py -------------------------------------------------------------------------------- /test/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test_functions.py -------------------------------------------------------------------------------- /test/test_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/test_with.py -------------------------------------------------------------------------------- /test/vmtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/test/vmtest.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/tox.ini -------------------------------------------------------------------------------- /xpython/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | -------------------------------------------------------------------------------- /xpython/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/__init__.py -------------------------------------------------------------------------------- /xpython/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/__main__.py -------------------------------------------------------------------------------- /xpython/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/builtins.py -------------------------------------------------------------------------------- /xpython/byteop/.gitignore: -------------------------------------------------------------------------------- 1 | /.mypy_cache 2 | -------------------------------------------------------------------------------- /xpython/byteop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/__init__.py -------------------------------------------------------------------------------- /xpython/byteop/byteop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop.py -------------------------------------------------------------------------------- /xpython/byteop/byteop24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop24.py -------------------------------------------------------------------------------- /xpython/byteop/byteop25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop25.py -------------------------------------------------------------------------------- /xpython/byteop/byteop26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop26.py -------------------------------------------------------------------------------- /xpython/byteop/byteop26pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop26pypy.py -------------------------------------------------------------------------------- /xpython/byteop/byteop27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop27.py -------------------------------------------------------------------------------- /xpython/byteop/byteop27pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop27pypy.py -------------------------------------------------------------------------------- /xpython/byteop/byteop31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop31.py -------------------------------------------------------------------------------- /xpython/byteop/byteop310.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop310.py -------------------------------------------------------------------------------- /xpython/byteop/byteop311.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop311.py -------------------------------------------------------------------------------- /xpython/byteop/byteop312.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop312.py -------------------------------------------------------------------------------- /xpython/byteop/byteop32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop32.py -------------------------------------------------------------------------------- /xpython/byteop/byteop32pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop32pypy.py -------------------------------------------------------------------------------- /xpython/byteop/byteop33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop33.py -------------------------------------------------------------------------------- /xpython/byteop/byteop34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop34.py -------------------------------------------------------------------------------- /xpython/byteop/byteop35.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop35.py -------------------------------------------------------------------------------- /xpython/byteop/byteop35pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop35pypy.py -------------------------------------------------------------------------------- /xpython/byteop/byteop36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop36.py -------------------------------------------------------------------------------- /xpython/byteop/byteop36pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop36pypy.py -------------------------------------------------------------------------------- /xpython/byteop/byteop37.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop37.py -------------------------------------------------------------------------------- /xpython/byteop/byteop37pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop37pypy.py -------------------------------------------------------------------------------- /xpython/byteop/byteop38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop38.py -------------------------------------------------------------------------------- /xpython/byteop/byteop38pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop38pypy.py -------------------------------------------------------------------------------- /xpython/byteop/byteop39.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop39.py -------------------------------------------------------------------------------- /xpython/byteop/byteop39pypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteop39pypy.py -------------------------------------------------------------------------------- /xpython/byteop/byteoppypy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/byteop/byteoppypy.py -------------------------------------------------------------------------------- /xpython/execfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/execfile.py -------------------------------------------------------------------------------- /xpython/pyobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/pyobj.py -------------------------------------------------------------------------------- /xpython/stdlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/__init__.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins_24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins_24.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins_25.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins_25.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins_26.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins_26.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins_27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins_27.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins_31.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins_31.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins_32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins_32.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins_33.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins_33.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins_36.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins_36.py -------------------------------------------------------------------------------- /xpython/stdlib/builtins_38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/builtins_38.py -------------------------------------------------------------------------------- /xpython/stdlib/inspect2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/inspect2.py -------------------------------------------------------------------------------- /xpython/stdlib/inspect3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/inspect3.py -------------------------------------------------------------------------------- /xpython/stdlib/inspectfor32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/inspectfor32.py -------------------------------------------------------------------------------- /xpython/stdlib/itertools_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/itertools_compat.py -------------------------------------------------------------------------------- /xpython/stdlib/types34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/stdlib/types34.py -------------------------------------------------------------------------------- /xpython/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/version.py -------------------------------------------------------------------------------- /xpython/version_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/version_info.py -------------------------------------------------------------------------------- /xpython/vm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/vm.py -------------------------------------------------------------------------------- /xpython/vmtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/HEAD/xpython/vmtrace.py --------------------------------------------------------------------------------