Staging
v0.5.1
https://github.com/python/cpython
Revision 0d45d50e421b46b56195821580c3760b43813106 authored by Miss Islington (bot) on 29 August 2019, 08:15:18 UTC, committed by Raymond Hettinger on 29 August 2019, 08:15:18 UTC
(cherry picked from commit 84125fed2a45a9e454d7e870d8bbaf6ece3d41e8)

Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
1 parent 102130a
Raw File
Tip revision: 0d45d50e421b46b56195821580c3760b43813106 authored by Miss Islington (bot) on 29 August 2019, 08:15:18 UTC
bpo-16468: Clarify which objects can be passed to "choices" in argparse (GH-15566) (GH-15587)
Tip revision: 0d45d50
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