Staging
v0.8.1
https://github.com/python/cpython
Revision c1635e497d060bae076127152801af2b2ec552ff authored by Larry Hastings on 07 September 2015, 05:10:22 UTC, committed by Larry Hastings on 07 September 2015, 05:10:22 UTC
Issue #25005: Backout fix for #8232 because of use of unsafe subprocess.call(shell=True)
2 parent s e5b5895 + 2ebd8f5
Raw File
Tip revision: c1635e497d060bae076127152801af2b2ec552ff authored by Larry Hastings on 07 September 2015, 05:10:22 UTC
Merged in stevedower/cpython350 (pull request #20)
Tip revision: c1635e4
namespaceobject.h

/* simple namespace object interface */

#ifndef NAMESPACEOBJECT_H
#define NAMESPACEOBJECT_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_DATA(PyTypeObject) _PyNamespace_Type;

PyAPI_FUNC(PyObject *) _PyNamespace_New(PyObject *kwds);

#ifdef __cplusplus
}
#endif
#endif /* !NAMESPACEOBJECT_H */
back to top