Staging
v0.5.1
https://github.com/python/cpython
Revision 5533c4952cd6c44c63274874be7de06495b914ea authored by Miss Skeleton (bot) on 03 October 2020, 10:44:14 UTC, committed by Ɓukasz Langa on 04 October 2020, 15:30:49 UTC
(cherry picked from commit f97e42ef4d97dee64f45ed65170a6e77c8e46fdf)

Co-authored-by: Ram Rachum <ram@rachum.com>
1 parent fd3d00a
Raw File
Tip revision: 5533c4952cd6c44c63274874be7de06495b914ea authored by Miss Skeleton (bot) on 03 October 2020, 10:44:14 UTC
[3.9] bpo-40833: Clarify Path.rename doc-string regarding relative paths (GH-20554)
Tip revision: 5533c49
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