Staging
v0.5.1
https://github.com/python/cpython
Revision 1a4d9ffa1aecd7e750195f2be06d3d16c7a3a88f authored by Cheryl Sabella on 01 June 2019, 21:03:22 UTC, committed by Terry Jan Reedy on 01 June 2019, 21:03:22 UTC
Insertion in line order makes sorting keys by line order unneeded.
1 parent e5f6207
Raw File
Tip revision: 1a4d9ffa1aecd7e750195f2be06d3d16c7a3a88f authored by Cheryl Sabella on 01 June 2019, 21:03:22 UTC
bpo-32411: IDLE: Remove line number sort in browser.py (#5011)
Tip revision: 1a4d9ff
_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