Staging
v0.5.1
https://github.com/python/cpython
Revision b992a0e102c1dcc8d038983755f792c2f65a233f authored by Serhiy Storchaka on 16 January 2014, 15:15:49 UTC, committed by Serhiy Storchaka on 16 January 2014, 15:15:49 UTC
requires them.  Disable executable bits and shebang lines in test and
benchmark files in order to prevent using a random system python, and in
source files of modules which don't provide command line interface.  Fixed
shebang line to use python3 executable in the unittestgui script.
1 parent 1654040
Raw File
Tip revision: b992a0e102c1dcc8d038983755f792c2f65a233f authored by Serhiy Storchaka on 16 January 2014, 15:15:49 UTC
Issue #19936: Added executable bits or shebang lines to Python scripts which
Tip revision: b992a0e
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