Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d27b4f2

Browse files
committed
Several oopsies -- Py_ALLOBJECTS_H -> Py_PYTHON_H, temporarily removed
pystate.h (to be restored later when that code is debugged), removed accessobject.h.
1 parent 174f95a commit d27b4f2

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

Include/Python.h

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#ifndef Py_ALLOBJECTS_H
2-
#define Py_ALLOBJECTS_H
1+
#ifndef Py_PYTHON_H
2+
#define Py_PYTHON_H
33
/* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
44

55
/***********************************************************
@@ -64,7 +64,6 @@ PERFORMANCE OF THIS SOFTWARE.
6464

6565
#include "pydebug.h"
6666

67-
#include "accessobject.h"
6867
#include "intobject.h"
6968
#include "longobject.h"
7069
#include "floatobject.h"
@@ -96,8 +95,6 @@ PERFORMANCE OF THIS SOFTWARE.
9695
#include "import.h"
9796
#include "bltinmodule.h"
9897

99-
#include "pystate.h"
100-
10198
#include "abstract.h"
10299

103100
#define PyArg_GetInt(v, a) PyArg_Parse((v), "i", (a))
@@ -113,4 +110,4 @@ PERFORMANCE OF THIS SOFTWARE.
113110

114111
#include "pyfpe.h"
115112

116-
#endif /* !Py_ALLOBJECTS_H */
113+
#endif /* !Py_PYTHON_H */

0 commit comments

Comments
 (0)