diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-18 10:57:33 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-08-18 10:57:33 (GMT) |
commit | c14190dc5b24716db1474a4c34618098331ce937 (patch) | |
tree | d8f5610dc6daa5f937d9d054a360478eacc5b231 /Doc/c-api/module.rst | |
parent | d91df1a7a961e15b0602cd19155ea9cdf08a9e07 (diff) | |
download | cpython-c14190dc5b24716db1474a4c34618098331ce937.zip cpython-c14190dc5b24716db1474a4c34618098331ce937.tar.gz cpython-c14190dc5b24716db1474a4c34618098331ce937.tar.bz2 |
Add versionadded tag to PyModule_GetFilenameObject() doc
Diffstat (limited to 'Doc/c-api/module.rst')
-rw-r--r-- | Doc/c-api/module.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/c-api/module.rst b/Doc/c-api/module.rst index 40acc4e..9e1af09 100644 --- a/Doc/c-api/module.rst +++ b/Doc/c-api/module.rst @@ -83,6 +83,8 @@ There are only a few functions special to module objects. unicode string, raise :exc:`SystemError` and return *NULL*; otherwise return a reference to a :ctype:`PyUnicodeObject`. + .. versionadded:: 3.2 + .. cfunction:: void* PyModule_GetState(PyObject *module) |