diff options
author | thegeorg <thegeorg@yandex-team.com> | 2023-10-03 11:19:48 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2023-10-03 11:43:28 +0300 |
commit | cda0c13f23f6b169fb0a49dc504b40a0aaecea09 (patch) | |
tree | 26476e92e5af2c856e017afb1df8f8dff42495bf /library/cpp/pybind/init.h | |
parent | 4854116da9c5e3c95bb8440f2ea997c54b6e1a61 (diff) | |
download | ydb-cda0c13f23f6b169fb0a49dc504b40a0aaecea09.tar.gz |
Move contrib/tools/jdk to build/platform/java/jdk/testing
Diffstat (limited to 'library/cpp/pybind/init.h')
-rw-r--r-- | library/cpp/pybind/init.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/library/cpp/pybind/init.h b/library/cpp/pybind/init.h new file mode 100644 index 00000000000..58874574ed6 --- /dev/null +++ b/library/cpp/pybind/init.h @@ -0,0 +1,25 @@ +#pragma once + +#define PY_SSIZE_T_CLEAN +#include <Python.h> + +#include "ptr.h" + +namespace NPyBind { +#if PY_MAJOR_VERSION >= 3 + +#define PYBIND_MODINIT(name) PyMODINIT_FUNC PyInit_##name() + + inline PyObject* ModInitReturn(TPyObjectPtr&& modptr) { + return modptr.Release(); + } + +#else + +#define PYBIND_MODINIT(name) PyMODINIT_FUNC init##name() + + inline void ModInitReturn(TPyObjectPtr&&) { + } + +#endif +} |