view contrib/fuzz/pyutil.h @ 50444:315f537627c1

hidden: add support for --remote-hidden to HTTP peer Test written by Pierre-Yves David.
author Manuel Jacob <me@manueljacob.de>
date Fri, 05 Apr 2019 01:17:15 +0200
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 */