1996-05-28 19:50:17 -03:00
|
|
|
/* -*- C -*- ***********************************************
|
2000-06-30 20:50:40 -03:00
|
|
|
Copyright (c) 2000, BeOpen.com.
|
|
|
|
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
|
|
|
|
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
See the file "Misc/COPYRIGHT" for information on usage and
|
|
|
|
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
1996-05-28 19:50:17 -03:00
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
/* Module configuration */
|
|
|
|
|
|
|
|
/* This file contains the table of built-in modules.
|
|
|
|
See init_builtin() in import.c. */
|
|
|
|
|
|
|
|
#include "Python.h"
|
|
|
|
|
|
|
|
extern void initarray();
|
2000-05-08 11:15:19 -03:00
|
|
|
#ifndef MS_WIN64
|
1996-05-28 19:50:17 -03:00
|
|
|
extern void initaudioop();
|
|
|
|
extern void initbinascii();
|
2000-05-08 11:15:19 -03:00
|
|
|
#endif
|
1996-06-28 16:12:06 -03:00
|
|
|
extern void initcmath();
|
1996-07-30 14:38:17 -03:00
|
|
|
extern void initerrno();
|
2000-06-30 02:02:53 -03:00
|
|
|
#ifdef WITH_CYCLE_GC
|
|
|
|
extern void initgc();
|
|
|
|
#endif
|
2000-05-08 11:15:19 -03:00
|
|
|
#ifndef MS_WIN64
|
1996-05-28 19:50:17 -03:00
|
|
|
extern void initimageop();
|
2000-05-08 11:15:19 -03:00
|
|
|
#endif
|
1996-05-28 19:50:17 -03:00
|
|
|
extern void initmath();
|
|
|
|
extern void initmd5();
|
|
|
|
extern void initnew();
|
|
|
|
extern void initnt();
|
1996-07-30 14:38:17 -03:00
|
|
|
extern void initoperator();
|
1996-05-28 19:50:17 -03:00
|
|
|
extern void initregex();
|
2000-05-08 11:15:19 -03:00
|
|
|
#ifndef MS_WIN64
|
1996-05-28 19:50:17 -03:00
|
|
|
extern void initrgbimg();
|
2000-05-08 11:15:19 -03:00
|
|
|
#endif
|
1996-05-28 19:50:17 -03:00
|
|
|
extern void initrotor();
|
|
|
|
extern void initsignal();
|
1999-04-13 12:41:10 -03:00
|
|
|
extern void initsha();
|
1996-05-28 19:50:17 -03:00
|
|
|
extern void initstrop();
|
|
|
|
extern void initstruct();
|
|
|
|
extern void inittime();
|
1996-08-21 21:43:42 -03:00
|
|
|
extern void initthread();
|
1997-05-06 12:59:14 -03:00
|
|
|
extern void initcStringIO();
|
|
|
|
extern void initcPickle();
|
1997-11-25 02:00:59 -04:00
|
|
|
extern void initpcre();
|
1997-08-06 21:11:34 -03:00
|
|
|
#ifdef WIN32
|
|
|
|
extern void initmsvcrt();
|
1998-06-19 01:29:55 -03:00
|
|
|
extern void init_locale();
|
1997-08-06 21:11:34 -03:00
|
|
|
#endif
|
2000-03-10 20:13:14 -04:00
|
|
|
extern void init_codecs();
|
1996-05-28 19:50:17 -03:00
|
|
|
|
|
|
|
/* -- ADDMODULE MARKER 1 -- */
|
|
|
|
|
|
|
|
extern void PyMarshal_Init();
|
|
|
|
extern void initimp();
|
|
|
|
|
1997-04-29 17:46:45 -03:00
|
|
|
struct _inittab _PyImport_Inittab[] = {
|
1996-05-28 19:50:17 -03:00
|
|
|
|
|
|
|
{"array", initarray},
|
1999-02-05 18:34:57 -04:00
|
|
|
#ifdef MS_WINDOWS
|
2000-05-08 11:15:19 -03:00
|
|
|
#ifndef MS_WIN64
|
1996-05-28 19:50:17 -03:00
|
|
|
{"audioop", initaudioop},
|
|
|
|
#endif
|
2000-05-08 11:15:19 -03:00
|
|
|
#endif
|
|
|
|
#ifndef MS_WIN64
|
1996-05-28 19:50:17 -03:00
|
|
|
{"binascii", initbinascii},
|
2000-05-08 11:15:19 -03:00
|
|
|
#endif
|
1996-06-28 16:12:06 -03:00
|
|
|
{"cmath", initcmath},
|
1996-07-30 14:38:17 -03:00
|
|
|
{"errno", initerrno},
|
2000-06-30 02:02:53 -03:00
|
|
|
#ifdef WITH_CYCLE_GC
|
|
|
|
{"gc", initgc},
|
|
|
|
#endif
|
2000-05-08 11:15:19 -03:00
|
|
|
#ifndef MS_WIN64
|
1996-05-28 19:50:17 -03:00
|
|
|
{"imageop", initimageop},
|
2000-05-08 11:15:19 -03:00
|
|
|
#endif
|
1996-05-28 19:50:17 -03:00
|
|
|
{"math", initmath},
|
|
|
|
{"md5", initmd5},
|
|
|
|
{"new", initnew},
|
1997-05-06 13:00:32 -03:00
|
|
|
{"nt", initnt}, /* Use the NT os functions, not posix */
|
1996-07-30 14:38:17 -03:00
|
|
|
{"operator", initoperator},
|
1996-05-28 19:50:17 -03:00
|
|
|
{"regex", initregex},
|
2000-05-08 11:15:19 -03:00
|
|
|
#ifndef MS_WIN64
|
1996-05-28 19:50:17 -03:00
|
|
|
{"rgbimg", initrgbimg},
|
2000-05-08 11:15:19 -03:00
|
|
|
#endif
|
1996-05-28 19:50:17 -03:00
|
|
|
{"rotor", initrotor},
|
|
|
|
{"signal", initsignal},
|
1999-04-13 12:41:10 -03:00
|
|
|
{"sha", initsha},
|
1996-05-28 19:50:17 -03:00
|
|
|
{"strop", initstrop},
|
|
|
|
{"struct", initstruct},
|
|
|
|
{"time", inittime},
|
1996-08-21 21:43:42 -03:00
|
|
|
#ifdef WITH_THREAD
|
|
|
|
{"thread", initthread},
|
|
|
|
#endif
|
1997-05-06 13:00:32 -03:00
|
|
|
{"cStringIO", initcStringIO},
|
|
|
|
{"cPickle", initcPickle},
|
1997-11-25 02:00:59 -04:00
|
|
|
{"pcre", initpcre},
|
1997-08-06 21:11:34 -03:00
|
|
|
#ifdef WIN32
|
2000-05-08 11:15:19 -03:00
|
|
|
{"msvcrt", initmsvcrt},
|
|
|
|
{"_locale", init_locale},
|
1997-08-06 21:11:34 -03:00
|
|
|
#endif
|
1996-05-28 19:50:17 -03:00
|
|
|
|
2000-05-08 11:15:19 -03:00
|
|
|
{"_codecs", init_codecs},
|
2000-03-10 20:13:14 -04:00
|
|
|
|
1996-05-28 19:50:17 -03:00
|
|
|
/* -- ADDMODULE MARKER 2 -- */
|
|
|
|
|
|
|
|
/* This module "lives in" with marshal.c */
|
|
|
|
{"marshal", PyMarshal_Init},
|
|
|
|
|
|
|
|
/* This lives it with import.c */
|
|
|
|
{"imp", initimp},
|
|
|
|
|
|
|
|
/* These entries are here for sys.builtin_module_names */
|
|
|
|
{"__main__", NULL},
|
|
|
|
{"__builtin__", NULL},
|
|
|
|
{"sys", NULL},
|
|
|
|
|
|
|
|
/* Sentinel */
|
|
|
|
{0, 0}
|
|
|
|
};
|