8000 Remove stray function declarations · python/cpython@2a8f0ef · GitHub
[go: up one dir, main page]

Skip to content

Commit 2a8f0ef

Browse files
committed
Remove stray function declarations
1 parent e786382 commit 2a8f0ef

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

Include/cpython/funcobject.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ PyAPI_FUNC(PyObject *) PyFunction_New(PyObject *, PyObject *);
6868
PyAPI_FUNC(PyObject *) PyFunction_NewWithQualName(PyObject *, PyObject *, PyObject *);
6969
PyAPI_FUNC(PyObject *) PyFunction_GetCode(PyObject *);
7070
PyAPI_FUNC(PyObject *) PyFunction_GetGlobals(PyObject *);
71-
PyAPI_FUNC(PyObject *) PyFunction_GetClassDict(PyObject *);
7271
PyAPI_FUNC(PyObject *) PyFunction_GetModule(PyObject *);
7372
PyAPI_FUNC(PyObject *) PyFunction_GetDefaults(PyObject *);
7473
PyAPI_FUNC(int) PyFunction_SetDefaults(PyObject *, PyObject *);

Include/internal/pycore_function.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ extern PyFunctionObject* _PyFunction_FromConstructor(PyFrameConstructor *constr)
1919
extern uint32_t _PyFunction_GetVersionForCurrentState(PyFunctionObject *func);
2020
extern PyObject *_Py_set_function_type_params(
2121
PyThreadState* unused, PyObject *func, PyObject *type_params);
22-
extern PyObject *_Py_set_function_class_dict(
23-
PyThreadState* unused, PyObject *func, PyObject *class_dict);
2422

2523
#ifdef __cplusplus
2624
}

0 commit comments

Comments
 (0)
0