diff options
author | Guido van Rossum <guido@python.org> | 1990-10-26 14:53:07 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-10-26 14:53:07 +0000 |
commit | cc716d4e2f6a16f1013b5aea52f4593c9ae07cc1 (patch) | |
tree | 7d0d65b1b87563a6ef391b3188032369b181dd8d /Python/errors.c | |
parent | f9acff56217ab6e55b2b0d77826d7e250af73e7b (diff) | |
download | cpython-cc716d4e2f6a16f1013b5aea52f4593c9ae07cc1.tar.gz |
Added intobject.h and tupleobject.h includes.
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/errors.c b/Python/errors.c index cba3f0226b..18f63a09b5 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -36,7 +36,9 @@ #include "PROTO.h" #include "object.h" +#include "intobject.h" #include "stringobject.h" +#include "tupleobject.h" #include "errors.h" /* Last exception stored by err_setval() */ |