diff options
Diffstat (limited to 'doc/source/f2py/code/spam.pyf')
-rw-r--r-- | doc/source/f2py/code/spam.pyf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/doc/source/f2py/code/spam.pyf b/doc/source/f2py/code/spam.pyf new file mode 100644 index 000000000..21ea18b77 --- /dev/null +++ b/doc/source/f2py/code/spam.pyf @@ -0,0 +1,19 @@ +! -*- f90 -*- +python module spam + usercode ''' + static char doc_spam_system[] = "Execute a shell command."; + static PyObject *spam_system(PyObject *self, PyObject *args) + { + char *command; + int sts; + + if (!PyArg_ParseTuple(args, "s", &command)) + return NULL; + sts = system(command); + return Py_BuildValue("i", sts); + } + ''' + pymethoddef ''' + {"system", spam_system, METH_VARARGS, doc_spam_system}, + ''' +end python module spam |