| 4774 | |
| 4775 | |
| 4776 | static module_t * python_module() |
| 4777 | { |
| 4778 | static module_t * python = 0; |
| 4779 | if ( !python ) |
| 4780 | python = bindmodule( constant_python ); |
| 4781 | return python; |
| 4782 | } |
| 4783 | |
| 4784 | |
| 4785 | static LIST * call_python_function( PYTHON_FUNCTION * function, FRAME * frame ) |
no test coverage detected