├── .github ├── FUNDING.yml └── workflows │ ├── build_test.yaml │ ├── lint.yaml │ └── release.yaml ├── .gitignore ├── LICENSE ├── Makefile ├── NOTICE.txt ├── README.md ├── requirements-test.txt ├── setup.py ├── src └── watchpoints │ ├── __init__.py │ ├── ast_monkey.py │ ├── util.py │ ├── watch.py │ ├── watch_element.py │ └── watch_print.py └── tests ├── __init__.py ├── data └── watchpoints-0.1.5-py3.8.egg ├── test_multithread.py ├── test_pandas.py ├── test_trace_func.py ├── test_unwatch.py ├── test_util.py ├── test_watch.py ├── test_watch_element.py └── test_watch_print.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/.github/workflows/build_test.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/.github/workflows/lint.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/README.md -------------------------------------------------------------------------------- /requirements-test.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/setup.py -------------------------------------------------------------------------------- /src/watchpoints/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/src/watchpoints/__init__.py -------------------------------------------------------------------------------- /src/watchpoints/ast_monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/src/watchpoints/ast_monkey.py -------------------------------------------------------------------------------- /src/watchpoints/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/src/watchpoints/util.py -------------------------------------------------------------------------------- /src/watchpoints/watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/src/watchpoints/watch.py -------------------------------------------------------------------------------- /src/watchpoints/watch_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/src/watchpoints/watch_element.py -------------------------------------------------------------------------------- /src/watchpoints/watch_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/src/watchpoints/watch_print.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/watchpoints-0.1.5-py3.8.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/data/watchpoints-0.1.5-py3.8.egg -------------------------------------------------------------------------------- /tests/test_multithread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/test_multithread.py -------------------------------------------------------------------------------- /tests/test_pandas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/test_pandas.py -------------------------------------------------------------------------------- /tests/test_trace_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/test_trace_func.py -------------------------------------------------------------------------------- /tests/test_unwatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/test_unwatch.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/test_watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/test_watch.py -------------------------------------------------------------------------------- /tests/test_watch_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/test_watch_element.py -------------------------------------------------------------------------------- /tests/test_watch_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaogaotiantian/watchpoints/HEAD/tests/test_watch_print.py --------------------------------------------------------------------------------