Staging
v0.5.1
Revision f92bb6ed336c49cabf30717c3b741b1b4284f491 authored by Miss Islington (bot) on 29 August 2019, 05:35:41 UTC, committed by GitHub on 29 August 2019, 05:35:41 UTC

* Define THREAD_STACK_SIZE for AIX to pass default recursion limit test
(cherry picked from commit 9670ce76b83bde950020f8d89c4d27168aaaf912)

Co-authored-by: Michael Felt <aixtools@users.noreply.github.com>
1 parent ed00fee
Raw File
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