Issue #20390: Small fixes and improvements for Argument Clinic.

This commit is contained in:
Larry Hastings 2014-01-25 20:43:29 -08:00
parent 9ad116bcd0
commit c20472640c
18 changed files with 164 additions and 125 deletions

View file

@ -492,8 +492,12 @@ PyAPI_FUNC(PyTypeObject *) _PyType_CalculateMetaclass(PyTypeObject *, PyObject *
PyAPI_FUNC(unsigned int) PyType_ClearCache(void);
PyAPI_FUNC(void) PyType_Modified(PyTypeObject *);
PyAPI_FUNC(PyObject *) _PyType_GetDocFromInternalDoc(const char *name, const char *internal_doc);
PyAPI_FUNC(PyObject *) _PyType_GetTextSignatureFromInternalDoc(const char *name, const char *internal_doc);
#ifndef Py_LIMITED_API
PyAPI_FUNC(PyObject *)
_PyType_GetDocFromInternalDoc(const char *, const char *);
PyAPI_FUNC(PyObject *)
_PyType_GetTextSignatureFromInternalDoc(const char *, const char *);
#endif
/* Generic operations on objects */
struct _Py_Identifier;