aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/src/Include/namespaceobject.h
blob: 6c79d6d419f945cbc201bab992a32cdcc40d3624 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 
/* 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 */