Staging
v0.5.1
https://github.com/python/cpython
Revision 6047b5537226efdcd2e3b460957fb44388ec2e99 authored by Terry Jan Reedy on 04 June 2016, 03:53:56 UTC, committed by Terry Jan Reedy on 04 June 2016, 03:53:56 UTC
The update_idletasks solution was provided by Serhiy Storchaka.
1 parent 75cbeb5
Raw File
Tip revision: 6047b5537226efdcd2e3b460957fb44388ec2e99 authored by Terry Jan Reedy on 04 June 2016, 03:53:56 UTC
Issue #27196: Stop 'application destroyed' warnings when running IDLE tests.
Tip revision: 6047b55
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