Author: Ronan Lamy <[email protected]>
Branch: py3.5
Changeset: r92395:49d988bc50f2
Date: 2017-09-14 20:42 +0100
http://bitbucket.org/pypy/pypy/changeset/49d988bc50f2/

Log:    Remove obsolete header intobject.h

diff --git a/pypy/module/cpyext/include/Python.h 
b/pypy/module/cpyext/include/Python.h
--- a/pypy/module/cpyext/include/Python.h
+++ b/pypy/module/cpyext/include/Python.h
@@ -114,7 +114,6 @@
 #include "descrobject.h"
 #include "tupleobject.h"
 #include "dictobject.h"
-#include "intobject.h"
 #include "longobject.h"
 #include "listobject.h"
 #include "longobject.h"
diff --git a/pypy/module/cpyext/include/intobject.h 
b/pypy/module/cpyext/include/intobject.h
deleted file mode 100644
--- a/pypy/module/cpyext/include/intobject.h
+++ /dev/null
@@ -1,18 +0,0 @@
-
-/* Int object interface */
-
-#ifndef Py_INTOBJECT_H
-#define Py_INTOBJECT_H
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef struct {
-    PyObject_HEAD
-    long ob_ival;
-} PyIntObject;
-
-#ifdef __cplusplus
-}
-#endif
-#endif /* !Py_INTOBJECT_H */
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to