Staging
v0.5.1
https://github.com/python/cpython
Revision f7ed4d4e83f5d9e85e244a1cbc460f26436ab24d authored by Shantanu on 06 June 2020, 10:08:48 UTC, committed by GitHub on 06 June 2020, 10:08:48 UTC
Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com>
Co-authored-by: Pablo Galindo <pablogsal@gmail.com>
(cherry picked from commit c116c94ff119485761460f1033cdee425bed0310)
1 parent c067183
Raw File
Tip revision: f7ed4d4e83f5d9e85e244a1cbc460f26436ab24d authored by Shantanu on 06 June 2020, 10:08:48 UTC
bpo-40614: Respect feature version for f-string debug expressions (GH-20196) (GH-20466)
Tip revision: f7ed4d4
_testinternalcapi.c
/*
 * C Extension module to test Python internal C APIs (Include/internal).
 */

#if !defined(Py_BUILD_CORE_BUILTIN) && !defined(Py_BUILD_CORE_MODULE)
#  error "Py_BUILD_CORE_BUILTIN or Py_BUILD_CORE_MODULE must be defined"
#endif

#define PY_SSIZE_T_CLEAN

#include "Python.h"
#include "pycore_initconfig.h"


static PyObject *
get_configs(PyObject *self, PyObject *Py_UNUSED(args))
{
    return _Py_GetConfigsAsDict();
}


static PyMethodDef TestMethods[] = {
    {"get_configs", get_configs, METH_NOARGS},
    {NULL, NULL} /* sentinel */
};


static struct PyModuleDef _testcapimodule = {
    PyModuleDef_HEAD_INIT,
    "_testinternalcapi",
    NULL,
    -1,
    TestMethods,
    NULL,
    NULL,
    NULL,
    NULL
};


PyMODINIT_FUNC
PyInit__testinternalcapi(void)
{
    return PyModule_Create(&_testcapimodule);
}
back to top