├── .coveragerc ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGES.rst ├── HACKING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── 42.png ├── CHANGES.txt ├── HACKING.txt ├── _static │ └── mg.css ├── all-the-chars.dot ├── canary-chain.png ├── canary.png ├── chain.png ├── chain.txt ├── class-with-finalizers.png ├── conf.py ├── extra-info.png ├── extra-info.txt ├── finalizers.png ├── forward-chain.png ├── generator-sample.txt ├── highlight.png ├── highlighting.txt ├── index.txt ├── objgraph.txt ├── quoting.txt ├── refcounts.png ├── references.txt ├── roots.png ├── sample-backref-graph.png ├── sample-graph.png ├── too-many.png └── uncollectable.txt ├── objgraph.py ├── other-requirements.txt ├── release.mk ├── setup.cfg ├── setup.py ├── tests.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: mgedmin 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /HACKING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/HACKING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/README.rst -------------------------------------------------------------------------------- /docs/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/42.png -------------------------------------------------------------------------------- /docs/CHANGES.txt: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/HACKING.txt: -------------------------------------------------------------------------------- 1 | .. include:: ../HACKING.rst 2 | -------------------------------------------------------------------------------- /docs/_static/mg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/_static/mg.css -------------------------------------------------------------------------------- /docs/all-the-chars.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/all-the-chars.dot -------------------------------------------------------------------------------- /docs/canary-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/canary-chain.png -------------------------------------------------------------------------------- /docs/canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/canary.png -------------------------------------------------------------------------------- /docs/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/chain.png -------------------------------------------------------------------------------- /docs/chain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/chain.txt -------------------------------------------------------------------------------- /docs/class-with-finalizers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/class-with-finalizers.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/extra-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/extra-info.png -------------------------------------------------------------------------------- /docs/extra-info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/extra-info.txt -------------------------------------------------------------------------------- /docs/finalizers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/finalizers.png -------------------------------------------------------------------------------- /docs/forward-chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/forward-chain.png -------------------------------------------------------------------------------- /docs/generator-sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/generator-sample.txt -------------------------------------------------------------------------------- /docs/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/highlight.png -------------------------------------------------------------------------------- /docs/highlighting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/highlighting.txt -------------------------------------------------------------------------------- /docs/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/index.txt -------------------------------------------------------------------------------- /docs/objgraph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/objgraph.txt -------------------------------------------------------------------------------- /docs/quoting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/quoting.txt -------------------------------------------------------------------------------- /docs/refcounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/refcounts.png -------------------------------------------------------------------------------- /docs/references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/references.txt -------------------------------------------------------------------------------- /docs/roots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/roots.png -------------------------------------------------------------------------------- /docs/sample-backref-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/sample-backref-graph.png -------------------------------------------------------------------------------- /docs/sample-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/sample-graph.png -------------------------------------------------------------------------------- /docs/too-many.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/too-many.png -------------------------------------------------------------------------------- /docs/uncollectable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/docs/uncollectable.txt -------------------------------------------------------------------------------- /objgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/objgraph.py -------------------------------------------------------------------------------- /other-requirements.txt: -------------------------------------------------------------------------------- 1 | graphviz 2 | -------------------------------------------------------------------------------- /release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/release.mk -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/setup.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgedmin/objgraph/HEAD/tox.ini --------------------------------------------------------------------------------