diff options
author | Guido van Rossum <guido@python.org> | 1990-10-26 14:53:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1990-10-26 14:53:07 (GMT) |
commit | 17e66f6d872b0a9d357203a67bf4434b826bc606 (patch) | |
tree | 7d0d65b1b87563a6ef391b3188032369b181dd8d /Python/errors.c | |
parent | 67d3d1348bc27db9d3e7cdcd1262e4f49ccd662f (diff) | |
download | cpython-17e66f6d872b0a9d357203a67bf4434b826bc606.zip cpython-17e66f6d872b0a9d357203a67bf4434b826bc606.tar.gz cpython-17e66f6d872b0a9d357203a67bf4434b826bc606.tar.bz2 |
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 cba3f02..18f63a0 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() */ |