:mod:`objgraph`
===============

.. automodule:: objgraph

.. currentmodule:: objgraph


Statistics
----------

.. autofunction:: count(typename[, objects])

.. autofunction:: typestats([objects])

.. autofunction:: most_common_types([limit=10, objects])

.. autofunction:: show_most_common_types([limit=10, objects])

.. autofunction:: show_growth([limit=10, peak_stats={}])


Locating and Filtering Objects
------------------------------

.. autofunction:: get_leaking_objects([objects])

.. autofunction:: by_type(typename[, objects])

.. autofunction:: at


Traversing and Displaying Object Graphs
---------------------------------------

.. autofunction:: find_ref_chain(obj, predicate[, max_depth=20, extra_ignore=()])

.. autofunction:: find_backref_chain(obj, predicate[, max_depth=20, extra_ignore=()])

.. autofunction:: show_chain(chain[, ..., highlight=None, filename=None, extra_info=None, refcounts=False])

.. autofunction:: show_backrefs(objs[, max_depth=3, extra_ignore=(), filter=None, too_many=10, highlight=None, filename=None, extra_info=None, refcounts=False])

.. autofunction:: show_refs(objs[, max_depth=3, extra_ignore=(), filter=None, too_many=10, highlight=None, filename=None, extra_info=None, refcounts=False])

