| 5448 | |
| 5449 | |
| 5450 | static module_t * python_module() |
| 5451 | { |
| 5452 | static module_t * python = 0; |
| 5453 | if ( !python ) |
| 5454 | python = bindmodule( constant_python ); |
| 5455 | return python; |
| 5456 | } |
| 5457 | |
| 5458 | |
| 5459 | static LIST * call_python_function( PYTHON_FUNCTION * function, FRAME * frame ) |
no test coverage detected