summaryrefslogtreecommitdiffstats
path: root/Include/cpython/funcobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Include/cpython/funcobject.h')
-rw-r--r--Include/cpython/funcobject.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/Include/cpython/funcobject.h b/Include/cpython/funcobject.h
index 18249b9..598cd33 100644
--- a/Include/cpython/funcobject.h
+++ b/Include/cpython/funcobject.h
@@ -97,11 +97,6 @@ static inline PyObject* PyFunction_GET_GLOBALS(PyObject *func) {
}
#define PyFunction_GET_GLOBALS(func) PyFunction_GET_GLOBALS(_PyObject_CAST(func))
-static inline PyObject* PyFunction_GET_BUILTINS(PyObject *func) {
- return _PyFunction_CAST(func)->func_builtins;
-}
-#define PyFunction_GET_BUILTINS(func) PyFunction_GET_BUILTINS(_PyObject_CAST(func))
-
static inline PyObject* PyFunction_GET_MODULE(PyObject *func) {
return _PyFunction_CAST(func)->func_module;
}