diff options
author | Georg Brandl <georg@python.org> | 2009-12-19 17:36:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-12-19 17:36:20 (GMT) |
commit | 4d345ce1c9115cd4e8a731c19576eae27b341bb4 (patch) | |
tree | 5a7698e2660939f1b3ab43b5367bd0371aac6d12 | |
parent | 6d7f6f75fdfedcb9c3e4a98194448eac619e9f95 (diff) | |
download | cpython-4d345ce1c9115cd4e8a731c19576eae27b341bb4.zip cpython-4d345ce1c9115cd4e8a731c19576eae27b341bb4.tar.gz cpython-4d345ce1c9115cd4e8a731c19576eae27b341bb4.tar.bz2 |
#7521: remove PyEval_GetRestricted() from the docs.
-rw-r--r-- | Doc/c-api/reflection.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Doc/c-api/reflection.rst b/Doc/c-api/reflection.rst index 3996c1f..234d66b 100644 --- a/Doc/c-api/reflection.rst +++ b/Doc/c-api/reflection.rst @@ -34,12 +34,6 @@ Reflection Return the line number that *frame* is currently executing. -.. cfunction:: int PyEval_GetRestricted() - - If there is a current frame and it is executing in restricted mode, return true, - otherwise false. - - .. cfunction:: const char* PyEval_GetFuncName(PyObject *func) Return the name of *func* if it is a function, class or instance object, else the |