Staging
v0.5.1
https://github.com/python/cpython
Revision fbeba8f2481411d608a616366394e07cdc52e0bb authored by mpheath on 13 February 2020, 18:32:09 UTC, committed by GitHub on 13 February 2020, 18:32:09 UTC
1 parent d905df7
Raw File
Tip revision: fbeba8f2481411d608a616366394e07cdc52e0bb authored by mpheath on 13 February 2020, 18:32:09 UTC
bpo-39524: Fixed doc-string in ast._pad_whitespace (GH-18340)
Tip revision: fbeba8f
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