| 4910 | |
| 4911 | |
| 4912 | static module_t * python_module() |
| 4913 | { |
| 4914 | static module_t * python = 0; |
| 4915 | if ( !python ) |
| 4916 | python = bindmodule( constant_python ); |
| 4917 | return python; |
| 4918 | } |
| 4919 | |
| 4920 | |
| 4921 | static LIST * call_python_function( PYTHON_FUNCTION * function, FRAME * frame ) |
no test coverage detected