diff options
author | Guido van Rossum <guido@python.org> | 1991-04-16 08:42:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-04-16 08:42:06 (GMT) |
commit | a5900aa549830d01b4653596c1d51e4ccf05b933 (patch) | |
tree | 758a8be5b92a81c86fbb6521ca51f8fac145a68f /Python/pythonmain.c | |
parent | bfe14c5c923c52410c729e849fbdf14df9502af3 (diff) | |
download | cpython-a5900aa549830d01b4653596c1d51e4ccf05b933.zip cpython-a5900aa549830d01b4653596c1d51e4ccf05b933.tar.gz cpython-a5900aa549830d01b4653596c1d51e4ccf05b933.tar.bz2 |
Move allobjects.h to front (needed by THINK C precompiled headers)
Diffstat (limited to 'Python/pythonmain.c')
-rw-r--r-- | Python/pythonmain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/pythonmain.c b/Python/pythonmain.c index 6602e2b..b0eedc7 100644 --- a/Python/pythonmain.c +++ b/Python/pythonmain.c @@ -24,10 +24,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. /* Python interpreter main program */ -#include "patchlevel.h" - #include "allobjects.h" +#include "patchlevel.h" + #include "grammar.h" #include "node.h" #include "parsetok.h" |