Mercurial > hg
view contrib/fuzz/pyutil.h @ 49076:9c8d67a3af5e
idirstate: add missing get_entry() method
Differential Revision: https://phab.mercurial-scm.org/D12566
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Mon, 18 Apr 2022 11:15:29 -0400 |
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 */