diff options
author | Victor Stinner <vstinner@python.org> | 2023-07-22 14:12:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-22 14:12:17 (GMT) |
commit | eda9ce148714947c164ff72b720e2645ca2cd5fb (patch) | |
tree | 3ee4198757769973cf23212817b373317e59669a /Include/cpython | |
parent | 89f987544860d1360e6232b6f52b8ced92a4d690 (diff) | |
download | cpython-eda9ce148714947c164ff72b720e2645ca2cd5fb.zip cpython-eda9ce148714947c164ff72b720e2645ca2cd5fb.tar.gz cpython-eda9ce148714947c164ff72b720e2645ca2cd5fb.tar.bz2 |
gh-106320: Move _PyNone_Type to the internal C API (#107030)
Move private types _PyNone_Type and _PyNotImplemented_Type to
internal C API.
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/object.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/cpython/object.h b/Include/cpython/object.h index cd421b4..0e5b6ac 100644 --- a/Include/cpython/object.h +++ b/Include/cpython/object.h @@ -377,9 +377,6 @@ PyAPI_FUNC(PyObject *) _PyObject_FunctionStr(PyObject *); #endif -PyAPI_DATA(PyTypeObject) _PyNone_Type; -PyAPI_DATA(PyTypeObject) _PyNotImplemented_Type; - /* Maps Py_LT to Py_GT, ..., Py_GE to Py_LE. * Defined in object.c. */ |