* various modules: #include "Python.h" and remove most remporary
	renaming hacks
diff --git a/Modules/rotormodule.c b/Modules/rotormodule.c
index da5ed10..a7529a3 100644
--- a/Modules/rotormodule.c
+++ b/Modules/rotormodule.c
@@ -55,16 +55,13 @@
 
 /* Rotor objects */
 
-#include "allobjects.h"
-#include "modsupport.h"
+#include "Python.h"
+
 #include <stdio.h>
 #include <math.h>
 #define TRUE	1
 #define FALSE	0
 
-/* This is temp until the renaming effort is done with Python */
-#include "rename1.h"
-
 typedef struct {
 	PyObject_HEAD
 	int seed[3];