├── .circleci ├── config-tox.yml └── config.yml ├── .coveragerc ├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ ├── osx.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .travis.yml ├── .treerc ├── AUTHORS ├── CONTRIBUTE.rst ├── ChangeLog ├── LICENSE ├── MANIFEST.in ├── Makefile ├── NEWS.md ├── README.rst ├── __pkginfo__.py ├── 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 ├── make-dist-2.7.sh ├── make-dist-3.1-3.2.sh ├── make-dist-3.3-3.5.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 │ ├── 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 │ ├── 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 │ ├── 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 │ ├── 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_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.10 │ ├── 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_call_ex_kw.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_eval.pyc │ ├── test_exception_match.pyc │ ├── test_exec.pyc │ ├── test_for_loop.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_global.pyc │ ├── test_import.pyc │ └── test_locals_and_globals.pyc ├── bytecode-3.11 │ ├── test_attribute_access.pyc │ ├── test_import.pyc │ └── test_pos_args.pyc ├── bytecode-3.2 │ ├── 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_for_loop.pyc │ ├── test_function_calls.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_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_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_super.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_while.pyc │ └── test_wraps.pyc ├── bytecode-3.3 │ ├── 02_make_closure.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_for_loop.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_generator_with_context_manager.pyc │ ├── test_global.pyc │ ├── test_greater.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_locals_and_globals.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_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_super.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_while.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.4 │ ├── 02_make_closure.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_for_loop.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_generator_with_context_manager.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_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_while.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.5 │ ├── 02_make_closure.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_for_loop.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_generator_with_context_manager.pyc │ ├── test_global.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_strange_sequence_ops.pyc │ ├── test_subscripting.pyc │ ├── test_suppressed_raise_in_context_manager.pyc │ ├── test_while.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.6 │ ├── 02_make_closure.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_call_ex_kw.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_del.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_docstring.pyc │ ├── test_eval.pyc │ ├── test_exception_match.pyc │ ├── test_exec.pyc │ ├── test_for_loop.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_global.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_locals_and_globals.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_while.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.7 │ ├── 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_call_ex_kw.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_del.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_docstring.pyc │ ├── test_eval.pyc │ ├── test_exception_match.pyc │ ├── test_exec.pyc │ ├── test_for_loop.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_global.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_while.pyc │ ├── test_wraps.pyc │ └── test_yield_from_tuple.pyc ├── bytecode-3.8 │ ├── 00_bug_dict_comp.pyc │ ├── 02_make_closure.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_call_ex_kw.pyc │ ├── test_callback.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_decorator.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_del.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_docstring.pyc │ ├── test_eval.pyc │ ├── test_exec.pyc │ ├── test_for_loop.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_global.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_while.pyc │ └── test_wraps.pyc ├── bytecode-3.9 │ ├── test_assign.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_constant.pyc │ ├── test_defining_functions_with_args_kwargs.pyc │ ├── test_del.pyc │ ├── test_different_globals_may_have_different_builtins.pyc │ ├── test_docstring.pyc │ ├── test_eval.pyc │ ├── test_exec.pyc │ ├── test_for_loop.pyc │ ├── test_fstring.pyc │ ├── test_function_calls.pyc │ ├── test_generator_expression.pyc │ ├── test_global.pyc │ ├── test_import.pyc │ ├── test_inplace_operators.pyc │ ├── test_locals_and_globals.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_while.pyc │ └── test_wraps.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 ├── bytecode-pypy38 │ ├── 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 ├── compile-file.py ├── examples │ ├── .gitignore │ ├── README.md │ ├── assign-2.4.pyc │ ├── basic │ │ ├── test_attribute_access.py │ │ ├── test_bound_method_on_falsy_objects.py │ │ ├── test_building_stuff.py │ │ ├── test_callback.py │ │ └── test_import.py │ ├── class │ │ └── test_super.py │ ├── data │ │ ├── test_attributes.py │ │ ├── test_constant.py │ │ ├── test_fstring.py │ │ ├── test_map_unpack.py │ │ └── test_var_annotate.py │ ├── exceptions │ │ ├── raise1.py │ │ ├── raise2.py │ │ ├── raise3.py │ │ ├── raise4.py │ │ ├── test_catching_exceptions.py │ │ ├── test_coverage_issue_92.py │ │ ├── test_exception_match.py │ │ └── test_reraise.py │ ├── expressions │ │ ├── test_comparisons.py │ │ ├── test_comprehensions.py │ │ ├── test_eval.py │ │ ├── test_generator_expression.py │ │ ├── test_inplace_operators.py │ │ ├── test_slice.py │ │ └── test_subscripting.py │ ├── functions │ │ ├── .gitignore │ │ ├── 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_closures.py │ │ ├── test_different_globals_may_have_different_builtins.py │ │ ├── test_function_calls.py │ │ ├── test_generator_with_context_manager.py │ │ ├── test_locals_and_globals.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 │ │ ├── test_assign.py │ │ ├── test_async.py │ │ ├── test_augmented_assign.py │ │ ├── test_del.py │ │ ├── test_docstring.py │ │ ├── test_exec.py │ │ ├── test_for_loop.py │ │ ├── test_global.py │ │ ├── test_import.py │ │ ├── test_pass.py │ │ ├── test_slice_stmts.py │ │ ├── test_while.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 │ ├── test_strange_sequence_ops.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-all-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_exceptions.py ├── test_functions.py ├── test_stmts.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 ├── byteop310.py ├── byteop311.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 └── 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 /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | branch = true 3 | source = . 4 | omit = .tox/* 5 | 6 | [report] 7 | partial_branches = 8 | (?i)# *pragma[: ]*no *branch 9 | elif PY3: 10 | -------------------------------------------------------------------------------- /.treerc: -------------------------------------------------------------------------------- 1 | [default] 2 | ignore = 3 | *.pyc 4 | __pycache__ 5 | .tox 6 | htmlcov 7 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Paul Swartz 2 | Ned Batchelder 3 | Allison Kaptur 4 | Laura Lindzey 5 | Rocky Bernstein 6 | -------------------------------------------------------------------------------- /admin-tools/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | pre-commit 3 | tox 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | nose 2 | six>=1.4 3 | xdis 4 | -------------------------------------------------------------------------------- /screenshots/.bashrc: -------------------------------------------------------------------------------- 1 | # This is how to set up .bashrc 2 | export PS1='\[\e[33m\]\$ \[\e[0m\]' 3 | -------------------------------------------------------------------------------- /screenshots/assign.py: -------------------------------------------------------------------------------- 1 | x, y = 2, 3 2 | x **= y 3 | -------------------------------------------------------------------------------- /screenshots/assign.txt: -------------------------------------------------------------------------------- 1 | export PS1='\[\e[33m\]\$ \[\e[0m\]' 2 | trepan-xpy -xc "x, y = 2, 3; x **= y" 3 | -------------------------------------------------------------------------------- /screenshots/ifelse.txt: -------------------------------------------------------------------------------- 1 | trepan-xpy -x -c '6 if __name__ != "__main__" else 10' 2 | -------------------------------------------------------------------------------- /screenshots/trepan-xpy-assign.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/screenshots/trepan-xpy-assign.gif -------------------------------------------------------------------------------- /screenshots/trepan-xpy-ifelse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/screenshots/trepan-xpy-ifelse.gif -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | from distutils.core import setup 4 | 5 | setup(packages=["xpython"]) 6 | -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | /*~ 2 | /.python-version 3 | /bytecode*/*.pyasm 4 | -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/__init__.py -------------------------------------------------------------------------------- /test/bytecode-2.4/01_for_else_try_else.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_generator_expression.pyc-notyet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_generator_expression.pyc-notyet -------------------------------------------------------------------------------- /test/bytecode-2.4/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-2.4/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.4/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_coverage_issue_92.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-2.5/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.5/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/01_ifelse_listcomp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/01_ifelse_listcomp.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_calling_function_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_calling_function_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_suppressed_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_suppressed_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-2.6/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.6/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_calling_function_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_calling_function_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_suppressed_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_suppressed_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-2.7/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-2.7/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/bad-bytecode/no-return-bad-cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/bad-bytecode/no-return-bad-cpython-310.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/bad-bytecode/short-stack-bad-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/bad-bytecode/short-stack-bad-310.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_call_ex_kw.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_call_ex_kw.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_calling_function_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_calling_function_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.10/test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.10/test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.11/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.11/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.11/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.11/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_calling_function_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_calling_function_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_simple_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_suppressed_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_suppressed_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.2/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.2/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/02_make_closure.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/02_make_closure.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_calling_function_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_calling_function_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_generator_with_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_generator_with_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_suppressed_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_suppressed_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.3/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.3/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/02_make_closure.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/02_make_closure.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_calling_function_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_calling_function_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_generator_with_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_generator_with_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_suppressed_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_suppressed_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.4/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.4/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/02_make_closure.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/02_make_closure.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_calling_function_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_calling_function_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_generator_with_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_generator_with_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_greater.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_greater.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_suppressed_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_suppressed_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.5/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.5/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/02_make_closure.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/02_make_closure.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_augmented_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_augmented_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_call_ex_kw.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_call_ex_kw.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_calling_function_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_calling_function_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_defining_functions_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_defining_functions_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_del.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_del.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_var_annotate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_var_annotate.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.6/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.6/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_augmented_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_augmented_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_call_ex_kw.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_call_ex_kw.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_calling_function_with_args_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_calling_function_with_args_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_coverage_issue_92.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_del.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_del.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_exception_match.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_exception_match.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_partial.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_partial.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_raise_in_context_manager.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_raise_in_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_raise_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_raise_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/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/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_simple_context_manager.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_var_annotate.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_var_annotate.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.7/test_yield_from_tuple.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.7/test_yield_from_tuple.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/00_bug_dict_comp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/00_bug_dict_comp.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/02_make_closure.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/02_make_closure.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_at_context_manager_complete.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_at_context_manager_complete.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_at_context_manager_simplified.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_at_context_manager_simplified.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_augmented_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_augmented_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_call_ex_kw.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_call_ex_kw.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_closure_vars_from_static_parent.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_closure_vars_from_static_parent.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_closures.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_closures.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_continue_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_continue_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_decorator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_decorator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_del.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_del.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_return_from_generator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.8/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.8/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_attribute_access.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_attribute_access.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_attributes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_attributes.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_augmented_assign.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_augmented_assign.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_bound_method_on_falsy_objects.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_bound_method_on_falsy_objects.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_break_in_with.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_break_in_with.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_building_stuff.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_building_stuff.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_callback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_callback.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_calling_methods_wrong.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_calling_methods_wrong.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_catching_exceptions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_catching_exceptions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_comparisons.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_comparisons.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_comprehensions.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_comprehensions.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_constant.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_constant.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_del.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_del.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_docstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_docstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_eval.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_eval.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_exec.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_exec.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_for_loop.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_for_loop.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_fstring.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_fstring.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_function_calls.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_function_calls.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_generator_expression.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_generator_expression.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_global.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_global.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_import.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_inplace_operators.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_inplace_operators.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_locals_and_globals.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_locals_and_globals.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_map_unpack.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_map_unpack.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_no_builtins.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_no_builtins.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_partial_with_kwargs.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_partial_with_kwargs.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_pass.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_pass.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_pos_args.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_pos_args.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_recursion.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_recursion.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_return_from_generator.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_return_from_generator.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_slice.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_slice.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_slice_stmts.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_slice_stmts.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_strange_sequence_ops.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_strange_sequence_ops.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_subscripting.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_subscripting.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_super.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_super.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_while.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_while.pyc -------------------------------------------------------------------------------- /test/bytecode-3.9/test_wraps.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-3.9/test_wraps.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_attribute_access.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_attribute_access.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_attributes.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_attributes.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_break_in_with.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_break_in_with.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_building_stuff.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_building_stuff.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_call_ex_kw.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_call_ex_kw.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_callback.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_callback.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_calling_methods_wrong.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_calling_methods_wrong.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_catching_exceptions.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_catching_exceptions.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_comparisons.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_comparisons.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_comprehensions.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_comprehensions.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_constant.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_constant.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_continue_in_with.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_continue_in_with.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_coverage_issue_92.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_coverage_issue_92.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_decorator.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_decorator.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_eval.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_eval.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_exception_match.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_exception_match.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_exec.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_exec.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_for_loop.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_for_loop.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_fstring.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_fstring.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_function_calls.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_function_calls.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_generator_expression.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_generator_expression.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_global.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_global.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_import.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_import.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_inplace_operators.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_inplace_operators.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_map_unpack.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_map_unpack.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_no_builtins.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_no_builtins.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_partial.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_partial.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_partial_with_kwargs.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_partial_with_kwargs.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_pos_args.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_pos_args.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_raise_in_context_manager.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_raise_in_context_manager.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_raise_in_with.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_raise_in_with.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_simple_context_manager.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_simple_context_manager.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_slice.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_slice.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_slice_stmts.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_slice_stmts.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_strange_sequence_ops.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_strange_sequence_ops.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_subscripting.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_subscripting.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_while.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_while.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_wraps.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_wraps.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy35/test_yield_from_tuple.pypy35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy35/test_yield_from_tuple.pypy35.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_attribute_access.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_attribute_access.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_attributes.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_attributes.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_break_in_with.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_break_in_with.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_building_stuff.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_building_stuff.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_call_ex_kw.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_call_ex_kw.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_callback.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_callback.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_calling_methods_wrong.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_calling_methods_wrong.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_catching_exceptions.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_catching_exceptions.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_comparisons.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_comparisons.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_comprehensions.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_comprehensions.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_constant.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_constant.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_continue_in_with.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_continue_in_with.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_coverage_issue_92.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_coverage_issue_92.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_decorator.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_decorator.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_eval.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_eval.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_exception_match.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_exception_match.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_exec.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_exec.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_for_loop.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_for_loop.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_fstring.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_fstring.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_function_calls.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_function_calls.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_generator_expression.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_generator_expression.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_global.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_global.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_import.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_import.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_inplace_operators.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_inplace_operators.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_map_unpack.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_map_unpack.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_no_builtins.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_no_builtins.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_partial.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_partial.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_partial_with_kwargs.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_partial_with_kwargs.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_pos_args.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_pos_args.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_raise_in_context_manager.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_raise_in_context_manager.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_raise_in_with.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_raise_in_with.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_return_from_generator.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_return_from_generator.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_simple_context_manager.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_simple_context_manager.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_slice.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_slice.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_slice_stmts.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_slice_stmts.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_strange_sequence_ops.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_strange_sequence_ops.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_subscripting.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_subscripting.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_var_annotate.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_var_annotate.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_while.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_while.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_wraps.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_wraps.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy36/test_yield_from_tuple.pypy36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy36/test_yield_from_tuple.pypy36.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_attribute_access.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_attribute_access.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_attributes.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_attributes.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_break_in_with.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_break_in_with.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_building_stuff.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_building_stuff.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_call_ex_kw.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_call_ex_kw.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_callback.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_callback.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_calling_methods_wrong.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_calling_methods_wrong.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_catching_exceptions.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_catching_exceptions.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_comparisons.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_comparisons.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_comprehensions.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_comprehensions.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_constant.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_constant.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_continue_in_with.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_continue_in_with.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_coverage_issue_92.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_coverage_issue_92.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_decorator.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_decorator.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_eval.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_eval.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_exception_match.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_exception_match.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_exec.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_exec.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_for_loop.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_for_loop.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_fstring.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_fstring.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_function_calls.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_function_calls.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_generator_expression.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_generator_expression.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_global.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_global.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_import.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_import.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_inplace_operators.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_inplace_operators.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_map_unpack.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_map_unpack.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_no_builtins.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_no_builtins.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_partial.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_partial.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_partial_with_kwargs.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_partial_with_kwargs.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_pos_args.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_pos_args.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_raise_in_context_manager.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_raise_in_context_manager.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_raise_in_with.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_raise_in_with.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_return_from_generator.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_return_from_generator.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_simple_context_manager.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_simple_context_manager.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_slice.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_slice.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_slice_stmts.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_slice_stmts.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_strange_sequence_ops.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_strange_sequence_ops.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_subscripting.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_subscripting.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_var_annotate.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_var_annotate.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_while.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_while.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_wraps.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_wraps.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy37/test_yield_from_tuple.pypy37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy37/test_yield_from_tuple.pypy37.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy38/test_callback.pypy38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy38/test_callback.pypy38.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy38/test_constant.pypy38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy38/test_constant.pypy38.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy38/test_fstring.pypy38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy38/test_fstring.pypy38.pyc -------------------------------------------------------------------------------- /test/bytecode-pypy38/test_strange_sequence_ops.pypy38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/bytecode-pypy38/test_strange_sequence_ops.pypy38.pyc -------------------------------------------------------------------------------- /test/examples/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | /*~ 3 | -------------------------------------------------------------------------------- /test/examples/assign-2.4.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rocky/x-python/041df2c02303cd7e770edf03e85b9300226f91c1/test/examples/assign-2.4.pyc -------------------------------------------------------------------------------- /test/examples/exceptions/raise1.py: -------------------------------------------------------------------------------- 1 | def foo(y): 2 | x = 5 3 | x / y 4 | 5 | 6 | def bar(): 7 | foo(0) 8 | 9 | 10 | bar() 11 | -------------------------------------------------------------------------------- /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/exceptions/test_reraise.py: -------------------------------------------------------------------------------- 1 | try: 2 | fooey 3 | print("Yes fooey?") 4 | except NameError: 5 | print("No fooey") 6 | raise 7 | -------------------------------------------------------------------------------- /test/examples/expressions/test_eval.py: -------------------------------------------------------------------------------- 1 | # eval is used in test_grammar.py 2 | 3 | """This program is self-checking!""" 4 | x = 10 5 | assert eval("x == 10") 6 | -------------------------------------------------------------------------------- /test/examples/functions/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | -------------------------------------------------------------------------------- /test/examples/stmts/test_pass.py: -------------------------------------------------------------------------------- 1 | # Tests: 2 | # assign ::= expr store 3 | pass 4 | -------------------------------------------------------------------------------- /test/examples/test_greater.py: -------------------------------------------------------------------------------- 1 | assert 3 > 1 2 | assert 3 >= 1 and 3 >= 3 3 | assert "z" > "a" 4 | assert "z" >= "a" and "z" >= "z" 5 | -------------------------------------------------------------------------------- /test/stdlib/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | -------------------------------------------------------------------------------- /xpython/.gitignore: -------------------------------------------------------------------------------- 1 | /.python-version 2 | -------------------------------------------------------------------------------- /xpython/byteop/.gitignore: -------------------------------------------------------------------------------- 1 | /.mypy_cache 2 | -------------------------------------------------------------------------------- /xpython/stdlib/__init__.py: -------------------------------------------------------------------------------- 1 | from xpython.stdlib import itertools_compat as itertools_compat 2 | 3 | __all__ = ["itertools_compat"] 4 | --------------------------------------------------------------------------------