New submission from Jonathan Sharpe:
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/tracem
Changes by Jonathan Sharpe :
--
assignee: docs@python
components: Documentation
files: fix_pep8_typo.patch
keywords: patch
nosy: docs@python, jonrsharpe
priority: normal
severity: normal
status: open
title: Typo in PEP-0008 - "this PEP do not"
type: enhancement
Added
New submission from Jonathan Sharpe:
For example, the link to PEP-340 in PEP-343 points to
https://www.python.org/dev/peps/pep-0343/pep-0340.html rather than
https://www.python.org/dev/peps/pep-0340/ and the link to PEP-288 from PEP-340
points to https://www.python.org/dev/peps/pep-0340/pep
Changes by Jonathan Sharpe :
--
assignee: -> docs@python
components: +Documentation
nosy: +docs@python, jonrsharpe
___
Python tracker
<http://bugs.python.org/issu
Jonathan Sharpe added the comment:
I don't think it's as simple as linking to the hashable definition. The
"equivalent expression" is simply wrong for dict/set/frozenset, as those types
check hash equality, not identity.
--
__