This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Incorrect link to statistics in tracemalloc documentation
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, jonrsharpe, python-dev
Priority: normal Keywords:

Created on 2014-11-10 17:30 by jonrsharpe, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg230968 - (view) Author: Jonathan Sharpe (jonrsharpe) * Date: 2014-11-10 17:30
The link to "statistics" in the documentation for tracemalloc.Snapshot.compare_to (https://docs.python.org/3/library/tracemalloc.html#tracemalloc.Snapshot.compare_to) should be to the statistics method (https://docs.python.org/3/library/tracemalloc.html#tracemalloc.Snapshot.statistics), per the description, not to the statistics module (https://docs.python.org/3/library/statistics.html#module-statistics), where it currently points.
msg230974 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-11-10 21:15
New changeset 387bbada31e8 by Berker Peksag in branch '3.4':
Issue #22839: Fix Snapshot.statistics() link.
https://hg.python.org/cpython/rev/387bbada31e8

New changeset 524a004e93dd by Berker Peksag in branch 'default':
Issue #22839: Fix Snapshot.statistics() link.
https://hg.python.org/cpython/rev/524a004e93dd
msg230975 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2014-11-10 21:16
Fixed. Thanks for the report, Jonathan.
History
Date User Action Args
2022-04-11 14:58:10adminsetgithub: 67028
2014-11-10 21:16:52berker.peksagsetstatus: open -> closed

type: behavior
versions: - Python 3.6
nosy: + berker.peksag

messages: + msg230975
resolution: fixed
stage: resolved
2014-11-10 21:15:43python-devsetnosy: + python-dev
messages: + msg230974
2014-11-10 17:30:42jonrsharpecreate