source: vendor/python/2.5/PC/config.c@ 3468

Last change on this file since 3468 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 4.4 KB
RevLine 
[3225]1/* Module configuration */
2
3/* This file contains the table of built-in modules.
4 See init_builtin() in import.c. */
5
6#include "Python.h"
7
8extern void initarray(void);
9#ifndef MS_WIN64
10extern void initaudioop(void);
11#endif
12extern void initbinascii(void);
13extern void initcmath(void);
14extern void initerrno(void);
15extern void initgc(void);
16#ifndef MS_WIN64
17extern void initimageop(void);
18#endif
19extern void initmath(void);
20extern void init_md5(void);
21extern void initnt(void);
22extern void initoperator(void);
23#ifndef MS_WIN64
24extern void initrgbimg(void);
25#endif
26extern void initsignal(void);
27extern void init_sha(void);
28extern void init_sha256(void);
29extern void init_sha512(void);