| 698 | } |
| 699 | |
| 700 | PyObject* GetPythonObjectFromInt(int num) { |
| 701 | #if PY_MAJOR_VERSION >= 3 |
| 702 | return PyLong_FromLong(num); |
| 703 | #else |
| 704 | return PyInt_FromLong(num); |
| 705 | #endif |
| 706 | } |
| 707 | |
| 708 | // Python subclass of Exception that is created on not ok Status. |
| 709 | tensorflow::mutex exception_class_mutex(tensorflow::LINKER_INITIALIZED); |
no outgoing calls
no test coverage detected