diff options
author | Guido van Rossum <guido@python.org> | 1995-03-02 14:05:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-02 14:05:29 (GMT) |
commit | d211220cd2ea4e51f58cd30fb8fa22a1a62b3b2d (patch) | |
tree | 64cc091fbaf5531ea833bdc2cad32f4731617a7e /Tools/modulator/Templates/module_head | |
parent | df804f8591bcb38ffd4a915c76bd6277ce766a5e (diff) | |
download | cpython-d211220cd2ea4e51f58cd30fb8fa22a1a62b3b2d.zip cpython-d211220cd2ea4e51f58cd30fb8fa22a1a62b3b2d.tar.gz cpython-d211220cd2ea4e51f58cd30fb8fa22a1a62b3b2d.tar.bz2 |
checkin of Jack's original version
Diffstat (limited to 'Tools/modulator/Templates/module_head')
-rw-r--r-- | Tools/modulator/Templates/module_head | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Tools/modulator/Templates/module_head b/Tools/modulator/Templates/module_head new file mode 100644 index 0000000..d1fafdc --- /dev/null +++ b/Tools/modulator/Templates/module_head @@ -0,0 +1,7 @@ + +#include "allobjects.h" +#include "modsupport.h" /* For getargs() etc. */ + +static object *ErrorObject; + +/* ----------------------------------------------------- */ |