Mercurial > hg
view contrib/fuzz/pyutil.h @ 45100:d50d922ca02b
debuginstall: don't translate encoding messages
While Microsoft trained us to read mojibake text, it doesn't make sense
to print mojibake messages when debugging the exact issue.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Thu, 09 Jul 2020 19:16:52 +0900 |
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 */