[Python-checkins] r86858 - peps/trunk/pep-0384.txt

georg.brandl python-checkins at python.org
Mon Nov 29 09:07:29 CET 2010


Author: georg.brandl
Date: Mon Nov 29 09:07:28 2010
New Revision: 86858

Log:
Fix markup glitches.

Modified:
   peps/trunk/pep-0384.txt

Modified: peps/trunk/pep-0384.txt
==============================================================================
--- peps/trunk/pep-0384.txt	(original)
+++ peps/trunk/pep-0384.txt	Mon Nov 29 09:07:28 2010
@@ -191,11 +191,11 @@
 
 - Py_uintptr_t Py_intptr_t Py_ssize_t
 - unaryfunc binaryfunc ternaryfunc inquiry lenfunc ssizeargfunc
-ssizessizeargfunc ssizeobjargproc ssizessizeobjargproc objobjargproc
-getbufferproc releasebufferproc objobjproc visitproc traverseproc
-destructor getattrfunc getattrofunc setattrfunc setattrofunc reprfunc
-hashfunc richcmpfunc getiterfunc iternextfunc descrgetfunc
-descrsetfunc initproc newfunc allocfunc
+  ssizessizeargfunc ssizeobjargproc ssizessizeobjargproc objobjargproc
+  getbufferproc releasebufferproc objobjproc visitproc traverseproc
+  destructor getattrfunc getattrofunc setattrfunc setattrofunc reprfunc
+  hashfunc richcmpfunc getiterfunc iternextfunc descrgetfunc
+  descrsetfunc initproc newfunc allocfunc
 - PyCFunction PyCFunctionWithKeywords PyNoArgsFunction
   PyCapsule_Destructor
 - getter setter
@@ -241,6 +241,7 @@
 
 Functions declared in the following header files are not part
 of the ABI:
+
 - bytes_methods.h
 - cellobject.h
 - classobject.h
@@ -268,12 +269,13 @@
 
 Module and type initalizer functions are not available
 (PyByteArray_Init, PyByteArray_Fini, PyBytes_Fini,
- PyCFunction_Fini, PyDict_Fini, PyFloat_ClearFreeList,
- PyFloat_Fini, PyFrame_Fini, PyList_Fini, PyMethod_Fini,
- PyOS_FiniInterrupts, PySet_Fini, PyTuple_Fini).
+PyCFunction_Fini, PyDict_Fini, PyFloat_ClearFreeList,
+PyFloat_Fini, PyFrame_Fini, PyList_Fini, PyMethod_Fini,
+PyOS_FiniInterrupts, PySet_Fini, PyTuple_Fini).
 
 Several functions dealing with interpreter implementation
 details are not available:
+
 - PyInterpreterState_Head, PyInterpreterState_Next,
   PyInterpreterState_ThreadHead, PyThreadState_Next
 - Py_SubversionRevision, Py_SubversionShortBranch


More information about the Python-checkins mailing list