Fix markup glitches.
This commit is contained in:
parent
cbabaf3fad
commit
fd1d228e4e
18
pep-0384.txt
18
pep-0384.txt
|
@ -191,11 +191,11 @@ differ across platforms).
|
||||||
|
|
||||||
- Py_uintptr_t Py_intptr_t Py_ssize_t
|
- Py_uintptr_t Py_intptr_t Py_ssize_t
|
||||||
- unaryfunc binaryfunc ternaryfunc inquiry lenfunc ssizeargfunc
|
- unaryfunc binaryfunc ternaryfunc inquiry lenfunc ssizeargfunc
|
||||||
ssizessizeargfunc ssizeobjargproc ssizessizeobjargproc objobjargproc
|
ssizessizeargfunc ssizeobjargproc ssizessizeobjargproc objobjargproc
|
||||||
getbufferproc releasebufferproc objobjproc visitproc traverseproc
|
getbufferproc releasebufferproc objobjproc visitproc traverseproc
|
||||||
destructor getattrfunc getattrofunc setattrfunc setattrofunc reprfunc
|
destructor getattrfunc getattrofunc setattrfunc setattrofunc reprfunc
|
||||||
hashfunc richcmpfunc getiterfunc iternextfunc descrgetfunc
|
hashfunc richcmpfunc getiterfunc iternextfunc descrgetfunc
|
||||||
descrsetfunc initproc newfunc allocfunc
|
descrsetfunc initproc newfunc allocfunc
|
||||||
- PyCFunction PyCFunctionWithKeywords PyNoArgsFunction
|
- PyCFunction PyCFunctionWithKeywords PyNoArgsFunction
|
||||||
PyCapsule_Destructor
|
PyCapsule_Destructor
|
||||||
- getter setter
|
- getter setter
|
||||||
|
@ -241,6 +241,7 @@ Excluded Functions
|
||||||
|
|
||||||
Functions declared in the following header files are not part
|
Functions declared in the following header files are not part
|
||||||
of the ABI:
|
of the ABI:
|
||||||
|
|
||||||
- bytes_methods.h
|
- bytes_methods.h
|
||||||
- cellobject.h
|
- cellobject.h
|
||||||
- classobject.h
|
- classobject.h
|
||||||
|
@ -268,12 +269,13 @@ Microsoft C runtime DLL on Windows.
|
||||||
|
|
||||||
Module and type initalizer functions are not available
|
Module and type initalizer functions are not available
|
||||||
(PyByteArray_Init, PyByteArray_Fini, PyBytes_Fini,
|
(PyByteArray_Init, PyByteArray_Fini, PyBytes_Fini,
|
||||||
PyCFunction_Fini, PyDict_Fini, PyFloat_ClearFreeList,
|
PyCFunction_Fini, PyDict_Fini, PyFloat_ClearFreeList,
|
||||||
PyFloat_Fini, PyFrame_Fini, PyList_Fini, PyMethod_Fini,
|
PyFloat_Fini, PyFrame_Fini, PyList_Fini, PyMethod_Fini,
|
||||||
PyOS_FiniInterrupts, PySet_Fini, PyTuple_Fini).
|
PyOS_FiniInterrupts, PySet_Fini, PyTuple_Fini).
|
||||||
|
|
||||||
Several functions dealing with interpreter implementation
|
Several functions dealing with interpreter implementation
|
||||||
details are not available:
|
details are not available:
|
||||||
|
|
||||||
- PyInterpreterState_Head, PyInterpreterState_Next,
|
- PyInterpreterState_Head, PyInterpreterState_Next,
|
||||||
PyInterpreterState_ThreadHead, PyThreadState_Next
|
PyInterpreterState_ThreadHead, PyThreadState_Next
|
||||||
- Py_SubversionRevision, Py_SubversionShortBranch
|
- Py_SubversionRevision, Py_SubversionShortBranch
|
||||||
|
|
Loading…
Reference in New Issue