blob: 6f369b2db08313033d18f983d68b0030969f3595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
Copyright 1998 The Regents of the University of California.
All rights reserved. See Legal.htm for full text and disclaimer.
*/
#include "Python.h"
#ifdef __cplusplus
extern "C" {
#endif
PyObject py_object_initializer = {PyObject_HEAD_INIT(0)};
#ifdef __cplusplus
}
#endif
|