Staging
v0.5.1
https://github.com/python/cpython
Revision 811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2 authored by Brett Cannon on 03 January 2018, 19:32:22 UTC, committed by GitHub on 03 January 2018, 19:32:22 UTC
Otherwise the import team gets flagged for reviews any time the bytecode for
importlib.h changes (e.g new bytecode, optimizations, etc.).
1 parent f190eb5
Raw File
Tip revision: 811b2878dfc68dc3ecd81fb4b370c6e1f9ec69c2 authored by Brett Cannon on 03 January 2018, 19:32:22 UTC
Ignore importlib.h for automatic review requests from the import team. (GH-5087)
Tip revision: 811b287
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