Makefile:

- add _csv module to the build list
- various cleanups

config.c:
- various cleanups

pyconfig.h:
- various cleanups
This commit is contained in:
Andrew MacIntyre 2003-04-21 14:28:01 +00:00
parent baf25b06a6
commit d4c9b16b34
3 changed files with 153 additions and 133 deletions

View file

@ -66,6 +66,7 @@ extern void initfcntl();
extern void initfpectl();
extern void initfpetest();
extern void initimageop();
extern void inititertools();
extern void initmath();
extern void initmd5();
extern void initoperator();
@ -129,6 +130,7 @@ struct _inittab _PyImport_Inittab[] = {
{"fpectl", initfpectl},
{"fpetest", initfpetest},
{"imageop", initimageop},
{"itertools", inititertools},
{"math", initmath},
{"md5", initmd5},
{"operator", initoperator},