mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
Patch #568124: Add doc string macros.
This commit is contained in:
parent
654c11ee3a
commit
14f8b4cfcb
63 changed files with 1509 additions and 1625 deletions
|
@ -112,13 +112,13 @@ PyCObject_dealloc(PyCObject *self)
|
|||
}
|
||||
|
||||
|
||||
static char PyCObject_Type__doc__[] =
|
||||
PyDoc_STRVAR(PyCObject_Type__doc__,
|
||||
"C objects to be exported from one extension module to another\n\
|
||||
\n\
|
||||
C objects are used for communication between extension modules. They\n\
|
||||
provide a way for an extension module to export a C interface to other\n\
|
||||
extension modules, so that extension modules can use the Python import\n\
|
||||
mechanism to link to one another.";
|
||||
mechanism to link to one another.");
|
||||
|
||||
PyTypeObject PyCObject_Type = {
|
||||
PyObject_HEAD_INIT(&PyType_Type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue