diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-09 00:10:24 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-02-09 00:10:24 (GMT) |
commit | aa029dad50d6999c5c73a7519bd5f755d866844b (patch) | |
tree | 5262be0e985829ecf1c6ef38a705b4ab116bc54f /Doc/c-api | |
parent | 96bb437ae8756be672c888a1322c445e64f1eb53 (diff) | |
download | cpython-aa029dad50d6999c5c73a7519bd5f755d866844b.zip cpython-aa029dad50d6999c5c73a7519bd5f755d866844b.tar.gz cpython-aa029dad50d6999c5c73a7519bd5f755d866844b.tar.bz2 |
Tweaks to What's New and some referenced docs
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/type.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/type.rst b/Doc/c-api/type.rst index 9e2b939..8dc040b 100644 --- a/Doc/c-api/type.rst +++ b/Doc/c-api/type.rst @@ -100,7 +100,7 @@ Type Objects .. c:function:: void* PyType_GetSlot(PyTypeObject *type, int slot) - Return the function pointer stored int the given slot. If the + Return the function pointer stored in the given slot. If the result is *NULL*, this indicates that either the slot is *NULL*, or that the function was called with invalid parameters. Callers will typically cast the result pointer into the appropriate |