| 231 | } |
| 232 | |
| 233 | static PyObject* python_tcl_write(PyObject *self, PyObject *args) { |
| 234 | const char *string; |
| 235 | if ( ! PyArg_ParseTuple(args, "s", &string) ) return 0; |
| 236 | CkPrintf("%s", string); |
| 237 | return Py_None; |
| 238 | } |
| 239 | |
| 240 | static PyMethodDef namdPython_methods[] = { |
| 241 | {"eval", python_tcl_eval, METH_VARARGS, |
nothing calls this directly
no outgoing calls
no test coverage detected