summaryrefslogtreecommitdiff
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/funcobject.c1
-rw-r--r--Objects/genobject.c2
-rw-r--r--Objects/object.c1
-rw-r--r--Objects/unicodectype.c1
-rw-r--r--Objects/unicodeobject.c1
5 files changed, 0 insertions, 6 deletions
diff --git a/Objects/funcobject.c b/Objects/funcobject.c
index c2ad964e58..221f368ae2 100644
--- a/Objects/funcobject.c
+++ b/Objects/funcobject.c
@@ -3,7 +3,6 @@
#include "Python.h"
#include "code.h"
-#include "eval.h"
#include "structmember.h"
PyObject *
diff --git a/Objects/genobject.c b/Objects/genobject.c
index 34ee7dcc1f..3fa1b4e726 100644
--- a/Objects/genobject.c
+++ b/Objects/genobject.c
@@ -2,8 +2,6 @@
#include "Python.h"
#include "frameobject.h"
-#include "genobject.h"
-#include "ceval.h"
#include "structmember.h"
#include "opcode.h"
diff --git a/Objects/object.c b/Objects/object.c
index 723e40eacb..082dd78e95 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -2,7 +2,6 @@
/* Generic object operations; and implementation of None (NoObject) */
#include "Python.h"
-#include "sliceobject.h" /* For PyEllipsis_Type */
#include "frameobject.h"
#ifdef __cplusplus
diff --git a/Objects/unicodectype.c b/Objects/unicodectype.c
index a41ceb8240..9f6ac89b9f 100644
--- a/Objects/unicodectype.c
+++ b/Objects/unicodectype.c
@@ -9,7 +9,6 @@
*/
#include "Python.h"
-#include "unicodeobject.h"
#define ALPHA_MASK 0x01
#define DECIMAL_MASK 0x02
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index d6cc8b5a24..89e3c8afb9 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -43,7 +43,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#include "Python.h"
#include "bytes_methods.h"
-#include "unicodeobject.h"
#include "ucnhash.h"
#ifdef MS_WINDOWS