| 15 | } |
| 16 | |
| 17 | inline bool IsPyInt( PyObject* pyObj ) |
| 18 | { |
| 19 | #if PY_MAJOR_VERSION == 2 |
| 20 | return PyInt_Check( pyObj ); |
| 21 | #else |
| 22 | return PyLong_Check( pyObj ); |
| 23 | #endif |
| 24 | } |
| 25 | |
| 26 | inline PyObject* ToPyBytes( const char* str, size_t size ) |
| 27 | { |
no outgoing calls
no test coverage detected