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: Add some versionchanged notes in threading docs
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, georg.brandl, ncoghlan, python-dev
Priority: low Keywords: easy

Created on 2012-04-04 01:05 by ncoghlan, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg157451 - (view) Author: Nick Coghlan (ncoghlan) * (Python committer) Date: 2012-04-04 01:05
A (very) minor irritation discovered today - the PEP 8 style names were added to the threading.Thread API in 2.6, but the only notice of this is up at the top of the module docs.

Some embedded notices like:

  ..versionchanged:: 2.6
     Added PEP 8 compliant interfaces. See note at top of page.

might be helpful.
msg157545 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2012-04-05 07:09
+1.
msg199668 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-10-13 08:07
New changeset 81c28c415718 by Georg Brandl in branch '2.7':
Closes #14486: add versionchanged notices throughout the threading docs for PEP8-compliant APIs; the note at the top of the page is too hard to notice.
http://hg.python.org/cpython/rev/81c28c415718
History
Date User Action Args
2022-04-11 14:57:28adminsetgithub: 58691
2013-10-13 08:07:14python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg199668

resolution: fixed
stage: needs patch -> resolved
2012-04-05 07:09:01georg.brandlsetnosy: + georg.brandl
messages: + msg157545
2012-04-04 01:05:21ncoghlancreate