diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:13:48 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:13:48 (GMT) |
commit | cd938fc5a1ba4a61959460787eb549ff989ca6b0 (patch) | |
tree | bdacb1f3ba568d3095e414dc4d02732a02c7c9c3 /Modules/newmodule.c | |
parent | 78c0535a224697e1c7a1a4e68462d3d204e38942 (diff) | |
download | cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.zip cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.tar.gz cpython-cd938fc5a1ba4a61959460787eb549ff989ca6b0.tar.bz2 |
Made some more things static, and other cleanup for new naming scheme
Diffstat (limited to 'Modules/newmodule.c')
-rw-r--r-- | Modules/newmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/newmodule.c b/Modules/newmodule.c index 4c8b16d..5a6e32c 100644 --- a/Modules/newmodule.c +++ b/Modules/newmodule.c @@ -26,7 +26,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "allobjects.h" #include "compile.h" -#include "modsupport.h" static char new_im_doc[] = "Create a instance method object from (FUNCTION, INSTANCE, CLASS)."; |