Issue 22839: Incorrect link to statistics in tracemalloc documentation (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/67028

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:10 admin set github: 67028
2014-11-10 21:16:52 berker.peksag set status: open -> closedtype: behaviorversions: - Python 3.6nosy: + berker.peksagmessages: + resolution: fixedstage: resolved
2014-11-10 21:15:43 python-dev set nosy: + python-devmessages: +
2014-11-10 17:30:42 jonrsharpe create