view contrib/fuzz/pyutil.h @ 49923:547d6817e0c3

rust-clippy: add `is_empty` method to please the `clippy` gods I can see it being useful anyway.
author Raphaël Gomès <rgomes@octobus.net>
date Mon, 09 Jan 2023 18:27:53 +0100
parents 8766728dbce6
children
line wrap: on
line source

#include <Python.h>

#if PY_MAJOR_VERSION >= 3
#define PYCODETYPE PyObject
#else
#define PYCODETYPE PyCodeObject
#endif

namespace contrib
{

void initpy(const char *cselfpath);
PyObject *pyglobals();

} /* namespace contrib */