diff options
author | Georg Brandl <georg@python.org> | 2009-02-21 19:09:40 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-02-21 19:09:40 (GMT) |
commit | a12a86e956f949bd145cef247a95ed742386c70b (patch) | |
tree | f086140b605582498d98b327e3694e79d967b558 /Doc/c-api | |
parent | be9b765c073eefcc109320b651d977ff03090f2f (diff) | |
download | cpython-a12a86e956f949bd145cef247a95ed742386c70b.zip cpython-a12a86e956f949bd145cef247a95ed742386c70b.tar.gz cpython-a12a86e956f949bd145cef247a95ed742386c70b.tar.bz2 |
#5338, #5339: two types in the API manual.
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/intro.rst | 2 | ||||
-rw-r--r-- | Doc/c-api/veryhigh.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/c-api/intro.rst b/Doc/c-api/intro.rst index 9befaf7..e8a3fc4 100644 --- a/Doc/c-api/intro.rst +++ b/Doc/c-api/intro.rst @@ -187,7 +187,7 @@ caller is said to receive a *new* reference. When no ownership is transferred, the caller is said to *borrow* the reference. Nothing needs to be done for a borrowed reference. -Conversely, when a calling function passes it a reference to an object, there +Conversely, when a calling function passes in a reference to an object, there are two possibilities: the function *steals* a reference to the object, or it does not. *Stealing a reference* means that when you pass a reference to a function, that function assumes that it now owns that reference, and you are not diff --git a/Doc/c-api/veryhigh.rst b/Doc/c-api/veryhigh.rst index 6a3f91d..6811bc8 100644 --- a/Doc/c-api/veryhigh.rst +++ b/Doc/c-api/veryhigh.rst @@ -16,7 +16,7 @@ parameter. The available start symbols are :const:`Py_eval_input`, :const:`Py_file_input`, and :const:`Py_single_input`. These are described following the functions which accept them as parameters. -Note also that several of these functions take :ctype:`FILE\*` parameters. On +Note also that several of these functions take :ctype:`FILE\*` parameters. One particular issue which needs to be handled carefully is that the :ctype:`FILE` structure for different C libraries can be different and incompatible. Under Windows (at least), it is possible for dynamically linked extensions to actually |