├── .github └── workflows │ └── pytest.yml ├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── make_release.sh ├── pyproject.toml ├── setup.cfg ├── setup.py ├── snoop ├── __init__.py ├── configuration.py ├── formatting.py ├── ipython.py ├── pp_module.py ├── tracer.py ├── utils.py └── variables.py ├── tests ├── __init__.py ├── fake_django_settings.py ├── sample_results │ ├── 3.10 │ │ ├── all_columns.txt │ │ ├── cellvars.txt │ │ ├── color.txt │ │ ├── color_without_comprehension.txt │ │ ├── comprehensions.txt │ │ ├── confusing_decorator_lines.txt │ │ ├── decorator_exception.txt │ │ ├── depth.txt │ │ ├── django_sample.txt │ │ ├── enabled.txt │ │ ├── enabled2.txt │ │ ├── end_finally.txt │ │ ├── exception.txt │ │ ├── f_string.txt │ │ ├── generator.txt │ │ ├── generator_expression.txt │ │ ├── indentation.txt │ │ ├── install_enabled.txt │ │ ├── lambda_function.txt │ │ ├── long_variable.txt │ │ ├── method_and_prefix.txt │ │ ├── multiline.txt │ │ ├── no_columns.txt │ │ ├── pandas_sample.txt │ │ ├── pp.txt │ │ ├── pp_custom_pformat.txt │ │ ├── pp_exception.txt │ │ ├── recursion.txt │ │ ├── spy.txt │ │ ├── threads.txt │ │ ├── unavailable_source.txt │ │ ├── var_order.txt │ │ ├── variables_classes.txt │ │ ├── watch.txt │ │ ├── watch_explode.txt │ │ ├── watch_extras.txt │ │ ├── with_block.txt │ │ ├── with_block_depth.txt │ │ └── with_no_args.txt │ ├── 3.11 │ │ ├── all_columns.txt │ │ ├── cellvars.txt │ │ ├── color.txt │ │ ├── color_without_comprehension.txt │ │ ├── comprehensions.txt │ │ ├── confusing_decorator_lines.txt │ │ ├── decorator_exception.txt │ │ ├── depth.txt │ │ ├── django_sample.txt │ │ ├── enabled.txt │ │ ├── enabled2.txt │ │ ├── end_finally.txt │ │ ├── exception.txt │ │ ├── f_string.txt │ │ ├── generator.txt │ │ ├── generator_expression.txt │ │ ├── indentation.txt │ │ ├── install_enabled.txt │ │ ├── lambda_function.txt │ │ ├── long_variable.txt │ │ ├── method_and_prefix.txt │ │ ├── multiline.txt │ │ ├── no_columns.txt │ │ ├── pandas_sample.txt │ │ ├── pp.txt │ │ ├── pp_custom_pformat.txt │ │ ├── pp_exception.txt │ │ ├── recursion.txt │ │ ├── spy.txt │ │ ├── threads.txt │ │ ├── unavailable_source.txt │ │ ├── var_order.txt │ │ ├── variables_classes.txt │ │ ├── watch.txt │ │ ├── watch_explode.txt │ │ ├── watch_extras.txt │ │ ├── with_block.txt │ │ ├── with_block_depth.txt │ │ └── with_no_args.txt │ ├── 3.12 │ │ ├── all_columns.txt │ │ ├── cellvars.txt │ │ ├── color.txt │ │ ├── color_without_comprehension.txt │ │ ├── comprehensions.txt │ │ ├── confusing_decorator_lines.txt │ │ ├── decorator_exception.txt │ │ ├── depth.txt │ │ ├── django_sample.txt │ │ ├── enabled.txt │ │ ├── enabled2.txt │ │ ├── end_finally.txt │ │ ├── exception.txt │ │ ├── f_string.txt │ │ ├── generator.txt │ │ ├── generator_expression.txt │ │ ├── indentation.txt │ │ ├── install_enabled.txt │ │ ├── lambda_function.txt │ │ ├── long_variable.txt │ │ ├── method_and_prefix.txt │ │ ├── multiline.txt │ │ ├── no_columns.txt │ │ ├── pandas_sample.txt │ │ ├── pp.txt │ │ ├── pp_custom_pformat.txt │ │ ├── pp_exception.txt │ │ ├── recursion.txt │ │ ├── spy.txt │ │ ├── threads.txt │ │ ├── unavailable_source.txt │ │ ├── var_order.txt │ │ ├── variables_classes.txt │ │ ├── watch.txt │ │ ├── watch_explode.txt │ │ ├── watch_extras.txt │ │ ├── with_block.txt │ │ ├── with_block_depth.txt │ │ └── with_no_args.txt │ ├── 3.13 │ │ ├── all_columns.txt │ │ ├── cellvars.txt │ │ ├── color.txt │ │ ├── color_without_comprehension.txt │ │ ├── comprehensions.txt │ │ ├── confusing_decorator_lines.txt │ │ ├── decorator_exception.txt │ │ ├── depth.txt │ │ ├── django_sample.txt │ │ ├── enabled.txt │ │ ├── enabled2.txt │ │ ├── end_finally.txt │ │ ├── exception.txt │ │ ├── f_string.txt │ │ ├── generator.txt │ │ ├── generator_expression.txt │ │ ├── indentation.txt │ │ ├── install_enabled.txt │ │ ├── lambda_function.txt │ │ ├── long_variable.txt │ │ ├── method_and_prefix.txt │ │ ├── multiline.txt │ │ ├── no_columns.txt │ │ ├── pandas_sample.txt │ │ ├── pp.txt │ │ ├── pp_custom_pformat.txt │ │ ├── pp_exception.txt │ │ ├── recursion.txt │ │ ├── spy.txt │ │ ├── threads.txt │ │ ├── unavailable_source.txt │ │ ├── var_order.txt │ │ ├── variables_classes.txt │ │ ├── watch.txt │ │ ├── watch_explode.txt │ │ ├── watch_extras.txt │ │ ├── with_block.txt │ │ ├── with_block_depth.txt │ │ └── with_no_args.txt │ ├── 3.8 │ │ ├── all_columns.txt │ │ ├── cellvars.txt │ │ ├── color.txt │ │ ├── color_without_comprehension.txt │ │ ├── comprehensions.txt │ │ ├── confusing_decorator_lines.txt │ │ ├── decorator_exception.txt │ │ ├── depth.txt │ │ ├── django_sample.txt │ │ ├── enabled.txt │ │ ├── enabled2.txt │ │ ├── end_finally.txt │ │ ├── exception.txt │ │ ├── f_string.txt │ │ ├── generator.txt │ │ ├── generator_expression.txt │ │ ├── indentation.txt │ │ ├── install_enabled.txt │ │ ├── lambda_function.txt │ │ ├── long_variable.txt │ │ ├── method_and_prefix.txt │ │ ├── multiline.txt │ │ ├── no_columns.txt │ │ ├── pandas_sample.txt │ │ ├── pp.txt │ │ ├── pp_custom_pformat.txt │ │ ├── pp_exception.txt │ │ ├── recursion.txt │ │ ├── spy.txt │ │ ├── threads.txt │ │ ├── unavailable_source.txt │ │ ├── var_order.txt │ │ ├── variables_classes.txt │ │ ├── watch.txt │ │ ├── watch_explode.txt │ │ ├── watch_extras.txt │ │ ├── with_block.txt │ │ ├── with_block_depth.txt │ │ └── with_no_args.txt │ └── 3.9 │ │ ├── all_columns.txt │ │ ├── cellvars.txt │ │ ├── color.txt │ │ ├── color_without_comprehension.txt │ │ ├── comprehensions.txt │ │ ├── confusing_decorator_lines.txt │ │ ├── decorator_exception.txt │ │ ├── depth.txt │ │ ├── django_sample.txt │ │ ├── enabled.txt │ │ ├── enabled2.txt │ │ ├── end_finally.txt │ │ ├── exception.txt │ │ ├── f_string.txt │ │ ├── generator.txt │ │ ├── generator_expression.txt │ │ ├── indentation.txt │ │ ├── install_enabled.txt │ │ ├── lambda_function.txt │ │ ├── long_variable.txt │ │ ├── method_and_prefix.txt │ │ ├── multiline.txt │ │ ├── no_columns.txt │ │ ├── pandas_sample.txt │ │ ├── pp.txt │ │ ├── pp_custom_pformat.txt │ │ ├── pp_exception.txt │ │ ├── recursion.txt │ │ ├── spy.txt │ │ ├── threads.txt │ │ ├── unavailable_source.txt │ │ ├── var_order.txt │ │ ├── variables_classes.txt │ │ ├── watch.txt │ │ ├── watch_explode.txt │ │ ├── watch_extras.txt │ │ ├── with_block.txt │ │ ├── with_block_depth.txt │ │ └── with_no_args.txt ├── samples │ ├── __init__.py │ ├── all_columns.py │ ├── cellvars.py │ ├── color.py │ ├── color_without_comprehension.py │ ├── comprehensions.py │ ├── confusing_decorator_lines.py │ ├── decorator_exception.py │ ├── depth.py │ ├── django_sample.py │ ├── enabled.py │ ├── enabled2.py │ ├── end_finally.py │ ├── exception.py │ ├── f_string.py │ ├── generator.py │ ├── generator_expression.py │ ├── indentation.py │ ├── install_enabled.py │ ├── lambda_function.py │ ├── long_variable.py │ ├── method_and_prefix.py │ ├── multiline.py │ ├── no_columns.py │ ├── pandas_sample.py │ ├── pp.py │ ├── pp_custom_pformat.py │ ├── pp_exception.py │ ├── recursion.py │ ├── spy.py │ ├── threads.py │ ├── unavailable_source.py │ ├── var_order.py │ ├── variables_classes.py │ ├── watch.py │ ├── watch_explode.py │ ├── watch_extras.py │ ├── with_block.py │ ├── with_block_depth.py │ └── with_no_args.py ├── test_snoop.py └── version_differences.txt └── tox.ini /.github/workflows/pytest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/.github/workflows/pytest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/README.md -------------------------------------------------------------------------------- /make_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/make_release.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/setup.py -------------------------------------------------------------------------------- /snoop/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/snoop/__init__.py -------------------------------------------------------------------------------- /snoop/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/snoop/configuration.py -------------------------------------------------------------------------------- /snoop/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/snoop/formatting.py -------------------------------------------------------------------------------- /snoop/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/snoop/ipython.py -------------------------------------------------------------------------------- /snoop/pp_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/snoop/pp_module.py -------------------------------------------------------------------------------- /snoop/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/snoop/tracer.py -------------------------------------------------------------------------------- /snoop/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/snoop/utils.py -------------------------------------------------------------------------------- /snoop/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/snoop/variables.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/fake_django_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/fake_django_settings.py -------------------------------------------------------------------------------- /tests/sample_results/3.10/all_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/all_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/cellvars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/cellvars.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/color.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/color_without_comprehension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/color_without_comprehension.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/comprehensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/comprehensions.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/confusing_decorator_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/confusing_decorator_lines.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/decorator_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/decorator_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/django_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/django_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/enabled.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.10/enabled2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.10/end_finally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/end_finally.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/f_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/f_string.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/generator.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/generator_expression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/generator_expression.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/indentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/indentation.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/install_enabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/install_enabled.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/lambda_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/lambda_function.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/long_variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/long_variable.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/method_and_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/method_and_prefix.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/multiline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/multiline.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/no_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/no_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/pandas_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/pandas_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/pp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/pp.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/pp_custom_pformat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/pp_custom_pformat.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/pp_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/pp_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/recursion.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/spy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/spy.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/threads.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/unavailable_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/unavailable_source.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/var_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/var_order.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/variables_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/variables_classes.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/watch.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/watch_explode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/watch_explode.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/watch_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/watch_extras.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/with_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/with_block.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/with_block_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/with_block_depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.10/with_no_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.10/with_no_args.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/all_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/all_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/cellvars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/cellvars.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/color.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/color_without_comprehension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/color_without_comprehension.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/comprehensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/comprehensions.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/confusing_decorator_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/confusing_decorator_lines.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/decorator_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/decorator_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/django_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/django_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/enabled.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.11/enabled2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.11/end_finally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/end_finally.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/f_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/f_string.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/generator.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/generator_expression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/generator_expression.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/indentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/indentation.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/install_enabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/install_enabled.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/lambda_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/lambda_function.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/long_variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/long_variable.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/method_and_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/method_and_prefix.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/multiline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/multiline.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/no_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/no_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/pandas_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/pandas_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/pp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/pp.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/pp_custom_pformat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/pp_custom_pformat.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/pp_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/pp_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/recursion.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/spy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/spy.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/threads.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/unavailable_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/unavailable_source.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/var_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/var_order.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/variables_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/variables_classes.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/watch.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/watch_explode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/watch_explode.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/watch_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/watch_extras.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/with_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/with_block.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/with_block_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/with_block_depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.11/with_no_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.11/with_no_args.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/all_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/all_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/cellvars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/cellvars.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/color.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/color_without_comprehension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/color_without_comprehension.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/comprehensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/comprehensions.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/confusing_decorator_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/confusing_decorator_lines.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/decorator_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/decorator_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/django_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/django_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/enabled.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.12/enabled2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.12/end_finally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/end_finally.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/f_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/f_string.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/generator.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/generator_expression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/generator_expression.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/indentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/indentation.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/install_enabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/install_enabled.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/lambda_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/lambda_function.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/long_variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/long_variable.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/method_and_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/method_and_prefix.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/multiline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/multiline.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/no_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/no_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/pandas_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/pandas_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/pp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/pp.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/pp_custom_pformat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/pp_custom_pformat.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/pp_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/pp_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/recursion.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/spy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/spy.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/threads.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/unavailable_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/unavailable_source.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/var_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/var_order.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/variables_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/variables_classes.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/watch.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/watch_explode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/watch_explode.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/watch_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/watch_extras.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/with_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/with_block.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/with_block_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/with_block_depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.12/with_no_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.12/with_no_args.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/all_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/all_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/cellvars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/cellvars.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/color.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/color_without_comprehension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/color_without_comprehension.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/comprehensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/comprehensions.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/confusing_decorator_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/confusing_decorator_lines.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/decorator_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/decorator_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/django_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/django_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/enabled.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.13/enabled2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.13/end_finally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/end_finally.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/f_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/f_string.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/generator.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/generator_expression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/generator_expression.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/indentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/indentation.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/install_enabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/install_enabled.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/lambda_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/lambda_function.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/long_variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/long_variable.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/method_and_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/method_and_prefix.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/multiline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/multiline.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/no_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/no_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/pandas_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/pandas_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/pp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/pp.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/pp_custom_pformat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/pp_custom_pformat.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/pp_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/pp_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/recursion.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/spy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/spy.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/threads.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/unavailable_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/unavailable_source.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/var_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/var_order.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/variables_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/variables_classes.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/watch.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/watch_explode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/watch_explode.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/watch_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/watch_extras.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/with_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/with_block.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/with_block_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/with_block_depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.13/with_no_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.13/with_no_args.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/all_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/all_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/cellvars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/cellvars.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/color.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/color_without_comprehension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/color_without_comprehension.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/comprehensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/comprehensions.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/confusing_decorator_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/confusing_decorator_lines.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/decorator_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/decorator_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/django_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/django_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/enabled.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.8/enabled2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.8/end_finally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/end_finally.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/f_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/f_string.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/generator.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/generator_expression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/generator_expression.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/indentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/indentation.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/install_enabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/install_enabled.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/lambda_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/lambda_function.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/long_variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/long_variable.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/method_and_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/method_and_prefix.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/multiline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/multiline.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/no_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/no_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/pandas_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/pandas_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/pp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/pp.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/pp_custom_pformat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/pp_custom_pformat.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/pp_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/pp_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/recursion.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/spy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/spy.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/threads.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/unavailable_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/unavailable_source.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/var_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/var_order.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/variables_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/variables_classes.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/watch.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/watch_explode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/watch_explode.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/watch_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/watch_extras.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/with_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/with_block.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/with_block_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/with_block_depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.8/with_no_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.8/with_no_args.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/all_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/all_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/cellvars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/cellvars.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/color.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/color.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/color_without_comprehension.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/color_without_comprehension.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/comprehensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/comprehensions.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/confusing_decorator_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/confusing_decorator_lines.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/decorator_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/decorator_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/django_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/django_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/enabled.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.9/enabled2.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample_results/3.9/end_finally.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/end_finally.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/f_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/f_string.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/generator.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/generator_expression.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/generator_expression.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/indentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/indentation.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/install_enabled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/install_enabled.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/lambda_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/lambda_function.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/long_variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/long_variable.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/method_and_prefix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/method_and_prefix.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/multiline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/multiline.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/no_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/no_columns.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/pandas_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/pandas_sample.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/pp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/pp.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/pp_custom_pformat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/pp_custom_pformat.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/pp_exception.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/pp_exception.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/recursion.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/spy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/spy.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/threads.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/threads.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/unavailable_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/unavailable_source.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/var_order.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/var_order.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/variables_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/variables_classes.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/watch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/watch.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/watch_explode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/watch_explode.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/watch_extras.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/watch_extras.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/with_block.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/with_block.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/with_block_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/with_block_depth.txt -------------------------------------------------------------------------------- /tests/sample_results/3.9/with_no_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/sample_results/3.9/with_no_args.txt -------------------------------------------------------------------------------- /tests/samples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/samples/all_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/all_columns.py -------------------------------------------------------------------------------- /tests/samples/cellvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/cellvars.py -------------------------------------------------------------------------------- /tests/samples/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/color.py -------------------------------------------------------------------------------- /tests/samples/color_without_comprehension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/color_without_comprehension.py -------------------------------------------------------------------------------- /tests/samples/comprehensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/comprehensions.py -------------------------------------------------------------------------------- /tests/samples/confusing_decorator_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/confusing_decorator_lines.py -------------------------------------------------------------------------------- /tests/samples/decorator_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/decorator_exception.py -------------------------------------------------------------------------------- /tests/samples/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/depth.py -------------------------------------------------------------------------------- /tests/samples/django_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/django_sample.py -------------------------------------------------------------------------------- /tests/samples/enabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/enabled.py -------------------------------------------------------------------------------- /tests/samples/enabled2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/enabled2.py -------------------------------------------------------------------------------- /tests/samples/end_finally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/end_finally.py -------------------------------------------------------------------------------- /tests/samples/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/exception.py -------------------------------------------------------------------------------- /tests/samples/f_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/f_string.py -------------------------------------------------------------------------------- /tests/samples/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/generator.py -------------------------------------------------------------------------------- /tests/samples/generator_expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/generator_expression.py -------------------------------------------------------------------------------- /tests/samples/indentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/indentation.py -------------------------------------------------------------------------------- /tests/samples/install_enabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/install_enabled.py -------------------------------------------------------------------------------- /tests/samples/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/lambda_function.py -------------------------------------------------------------------------------- /tests/samples/long_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/long_variable.py -------------------------------------------------------------------------------- /tests/samples/method_and_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/method_and_prefix.py -------------------------------------------------------------------------------- /tests/samples/multiline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/multiline.py -------------------------------------------------------------------------------- /tests/samples/no_columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/no_columns.py -------------------------------------------------------------------------------- /tests/samples/pandas_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/pandas_sample.py -------------------------------------------------------------------------------- /tests/samples/pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/pp.py -------------------------------------------------------------------------------- /tests/samples/pp_custom_pformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/pp_custom_pformat.py -------------------------------------------------------------------------------- /tests/samples/pp_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/pp_exception.py -------------------------------------------------------------------------------- /tests/samples/recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/recursion.py -------------------------------------------------------------------------------- /tests/samples/spy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/spy.py -------------------------------------------------------------------------------- /tests/samples/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/threads.py -------------------------------------------------------------------------------- /tests/samples/unavailable_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/unavailable_source.py -------------------------------------------------------------------------------- /tests/samples/var_order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/var_order.py -------------------------------------------------------------------------------- /tests/samples/variables_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/variables_classes.py -------------------------------------------------------------------------------- /tests/samples/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/watch.py -------------------------------------------------------------------------------- /tests/samples/watch_explode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/watch_explode.py -------------------------------------------------------------------------------- /tests/samples/watch_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/watch_extras.py -------------------------------------------------------------------------------- /tests/samples/with_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/with_block.py -------------------------------------------------------------------------------- /tests/samples/with_block_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/with_block_depth.py -------------------------------------------------------------------------------- /tests/samples/with_no_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/samples/with_no_args.py -------------------------------------------------------------------------------- /tests/test_snoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/test_snoop.py -------------------------------------------------------------------------------- /tests/version_differences.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tests/version_differences.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexmojaki/snoop/HEAD/tox.ini --------------------------------------------------------------------------------