view contrib/fuzz/pyutil.h @ 50250:2e20ff5d496e stable

Added tag 6.3.3 for changeset 8830004967ad
author Raphaël Gomès <rgomes@octobus.net>
date Thu, 02 Mar 2023 15:21:23 +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 */