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: Typo in ctypes documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.2, Python 3.3, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, jwilk, ned.deily, python-dev
Priority: normal Keywords:

Created on 2013-05-20 21:06 by jwilk, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (3)
msg189693 - (view) Author: Jakub Wilk (jwilk) Date: 2013-05-20 21:06
http://docs.python.org/3/library/ctypes.html#finding-shared-libraries reads:
"If wrapping a shared library with ctypes, it may be better to determine the shared library name at development type, and hardcode ..."

Shouldn't that be "... at development time, ..."?
msg189697 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-05-20 21:33
New changeset 7937f5c56924 by Ned Deily in branch '2.7':
Issue #18026: fix ctypes doc typo
http://hg.python.org/cpython/rev/7937f5c56924

New changeset cac83b62b0de by Ned Deily in branch '3.3':
Issue #18026: fix ctypes doc typo
http://hg.python.org/cpython/rev/cac83b62b0de

New changeset 1f388bbc8917 by Ned Deily in branch 'default':
Issue #18026: merge
http://hg.python.org/cpython/rev/1f388bbc8917
msg189698 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2013-05-20 21:34
It should. Thanks!
History
Date User Action Args
2022-04-11 14:57:45adminsetgithub: 62226
2013-05-20 21:34:49ned.deilysetstatus: open -> closed

versions: + Python 2.7, Python 3.2, Python 3.3
nosy: + ned.deily

messages: + msg189698
resolution: fixed
stage: resolved
2013-05-20 21:33:45python-devsetnosy: + python-dev
messages: + msg189697
2013-05-20 21:06:37jwilkcreate