[issue22839] Incorrect link to statistics in tracemalloc documentation

2014-11-10 Thread Jonathan Sharpe
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

[issue23149] Typo in PEP-0008 - "this PEP do not"

2015-01-02 Thread Jonathan Sharpe
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

[issue23379] Incorrect links within PEPs

2015-02-02 Thread Jonathan Sharpe
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

[issue23987] docs about containers membership testing wrong for broken objects

2015-04-17 Thread Jonathan Sharpe
Changes by Jonathan Sharpe : -- assignee: -> docs@python components: +Documentation nosy: +docs@python, jonrsharpe ___ Python tracker <http://bugs.python.org/issu

[issue23987] docs about containers membership testing wrong for broken objects

2015-04-17 Thread Jonathan Sharpe
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. -- __