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: Wrong parameter name in distutils documentation
Type: behavior Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: artakase, docs@python, python-dev
Priority: normal Keywords: patch

Created on 2015-09-12 04:41 by artakase, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
library_option.patch artakase, 2015-09-12 04:41 review
Messages (2)
msg250512 - (view) Author: TAKASE Arihiro (artakase) Date: 2015-09-12 04:41
In Doc/distutils/apiref.rst, the palameter name of CCompiler.library_option is *lib*, but written *dir* in the documentation.

This also applies to the docstring of CCompiler.library_option().

The attached patch fixes it.
msg250545 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-09-13 00:22
New changeset 1208c85af6d5 by Benjamin Peterson in branch '3.4':
fix name of argument in docstring and the docs (closes #25076)
https://hg.python.org/cpython/rev/1208c85af6d5

New changeset 63bbe9f80909 by Benjamin Peterson in branch '2.7':
fix name of argument in docstring and the docs (closes #25076)
https://hg.python.org/cpython/rev/63bbe9f80909

New changeset f4dc1b8bb4b6 by Benjamin Peterson in branch 'default':
merge 3.5 (#25076)
https://hg.python.org/cpython/rev/f4dc1b8bb4b6
History
Date User Action Args
2022-04-11 14:58:20adminsetgithub: 69263
2015-09-13 00:22:09python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg250545

resolution: fixed
stage: resolved
2015-09-12 04:41:06artakasecreate