Staging
v0.5.1
https://github.com/python/cpython
Revision 4112a3da2e01ecc19e9f54b8ac7b383b6f5e85c8 authored by Andrew Svetlov on 07 January 2020, 14:55:19 UTC, committed by GitHub on 07 January 2020, 14:55:19 UTC
https://bugs.python.org/issue39191.
(cherry picked from commit 10ac0cded26d91c3468e5e5a87cecad7fc0bcebd)

Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
1 parent a6b3758
Raw File
Tip revision: 4112a3da2e01ecc19e9f54b8ac7b383b6f5e85c8 authored by Andrew Svetlov on 07 January 2020, 14:55:19 UTC
[3.8] bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) (#17894)
Tip revision: 4112a3d
_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