diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-06-20 12:26:03 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-06-20 12:26:03 +0000 |
commit | 871aca3d3ee165090023e694a08b23881d873e6a (patch) | |
tree | 63e99c089220d9c7a067c1cf4aa4829244303d1b /Tools/modulator/Templates | |
parent | 2d2706a009f7226fe27ab45dc5287b6c2affd5ec (diff) | |
download | cpython-871aca3d3ee165090023e694a08b23881d873e6a.tar.gz |
Jim Fulton's change to support doc strings
Diffstat (limited to 'Tools/modulator/Templates')
-rw-r--r-- | Tools/modulator/Templates/module_method | 4 | ||||
-rw-r--r-- | Tools/modulator/Templates/module_tail | 8 | ||||
-rw-r--r-- | Tools/modulator/Templates/object_method | 4 | ||||
-rw-r--r-- | Tools/modulator/Templates/object_tail | 10 |
4 files changed, 25 insertions, 1 deletions
diff --git a/Tools/modulator/Templates/module_method b/Tools/modulator/Templates/module_method index 53cc1ac605..9e6c0d2c12 100644 --- a/Tools/modulator/Templates/module_method +++ b/Tools/modulator/Templates/module_method @@ -1,4 +1,8 @@ +static char $abbrev$_$method$__doc__[] = +"" +; + static PyObject * $abbrev$_$method$(self, args) PyObject *self; /* Not used */ diff --git a/Tools/modulator/Templates/module_tail b/Tools/modulator/Templates/module_tail index 8af75db9d6..6ee7645ff4 100644 --- a/Tools/modulator/Templates/module_tail +++ b/Tools/modulator/Templates/module_tail @@ -9,13 +9,19 @@ static struct PyMethodDef $abbrev$_methods[] = { /* Initialization function for the module (*must* be called init$name$) */ +static char $name$_module_documentation[] = +"" +; + void init$name$() { PyObject *m, *d; /* Create the module and add the functions */ - m = Py_InitModule("$name$", $abbrev$_methods); + m = Py_InitModule4("$name$", $abbrev$_methods, + $name$_module_documentation, + (PyObject*)NULL,PYTHON_API_VERSION); /* Add some symbolic constants to the module */ d = PyModule_GetDict(m); diff --git a/Tools/modulator/Templates/object_method b/Tools/modulator/Templates/object_method index 7ff5cea4ef..95414947c4 100644 --- a/Tools/modulator/Templates/object_method +++ b/Tools/modulator/Templates/object_method @@ -1,4 +1,8 @@ +static char $abbrev$_$method$__doc__[] = +"" +; + static PyObject * $abbrev$_$method$(self, args) $abbrev$object *self; diff --git a/Tools/modulator/Templates/object_tail b/Tools/modulator/Templates/object_tail index 4803ea5542..65d29d35b4 100644 --- a/Tools/modulator/Templates/object_tail +++ b/Tools/modulator/Templates/object_tail @@ -1,4 +1,8 @@ +static char $Abbrev$type__doc__[] = +"" +; + static PyTypeObject $Abbrev$type = { PyObject_HEAD_INIT(&PyType_Type) 0, /*ob_size*/ @@ -16,6 +20,12 @@ static PyTypeObject $Abbrev$type = { $tp_as_sequence$, /*tp_as_sequence*/ $tp_as_mapping$, /*tp_as_mapping*/ (hashfunc)$tp_hash$, /*tp_hash*/ + (binaryfunc)$tp_call$, /*tp_call*/ + (reprfunc)$tp_str$, /*tp_str*/ + + /* Space for future expansion */ + 0L,0L,0L,0L, + $Abbrev$type__doc__ /* Documentation string */ }; /* End of code for $name$ objects */ |