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: Minor problems with PyFileObject documentation (Doc/c-api/file.rst)
Type: Stage:
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, georg.brandl, pebolle, pitrou
Priority: normal Keywords: patch

Created on 2010-10-15 06:50 by pebolle, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
python-2.7-Doc-gil.patch pebolle, 2010-10-15 06:50 minor documentation fixes
Messages (2)
msg118742 - (view) Author: Paul Bolle (pebolle) Date: 2010-10-15 06:50
0) I ran into some (small) problems with the documentation added by revision 62195 (see issue 815646 for background).

1) A small patch that addresses two problems with the Python 2.7 documentation should be attached:
- link three occurrences of "GIL" to the GIL entry in the glossary; and
- add some example code to clarify the usage of PyFile_IncUseCount() andPyFile_DecUseCount().

2) That patch also adds a link to the "Thread State and the Global Interpreter Lock" section to the GIL entry in the Documentation index. That is a separate problem. But fixing that minor problem could also be of help to people (like me) that need to better understand the GIL aspects of those two functions.
msg118811 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-10-15 17:53
Committed in r85545.
History
Date User Action Args
2022-04-11 14:57:07adminsetgithub: 54320
2010-10-15 17:53:12georg.brandlsetstatus: open -> closed

nosy: + georg.brandl
messages: + msg118811

resolution: fixed
2010-10-15 14:04:57eric.araujosetnosy: + pitrou
2010-10-15 06:50:06pebollecreate