Staging
v0.5.1
https://github.com/python/cpython
Revision f07e2b64df6304a36fb5e29397d3c77a7ba17704 authored by Serhiy Storchaka on 08 October 2017, 07:44:10 UTC, committed by GitHub on 08 October 2017, 07:44:10 UTC
1 parent 73ffd3f
Raw File
Tip revision: f07e2b64df6304a36fb5e29397d3c77a7ba17704 authored by Serhiy Storchaka on 08 October 2017, 07:44:10 UTC
bpo-31642: Restore blocking "from" import by setting None in sys.modules. (#3834)
Tip revision: f07e2b6
namespaceobject.h

/* simple namespace object interface */

#ifndef NAMESPACEOBJECT_H
#define NAMESPACEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

#ifndef Py_LIMITED_API
PyAPI_DATA(PyTypeObject) _PyNamespace_Type;

PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);
#endif /* !Py_LIMITED_API */

#ifdef __cplusplus
}
#endif
#endif /* !NAMESPACEOBJECT_H */
back to top