Create _ast module.

Cleanup Python-ast.c generation.
This commit is contained in:
Martin v. Löwis 2006-02-27 15:23:19 +00:00
parent 2086eaf79c
commit 577b5b960d
7 changed files with 485 additions and 221 deletions

View file

@ -67,6 +67,7 @@ extern void init_codecs_kr(void);
extern void init_codecs_tw(void);
extern void init_subprocess(void);
extern void init_lsprof(void);
extern void init_ast(void);
/* tools/freeze/makeconfig.py marker for additional "extern" */
/* -- ADDMODULE MARKER 1 -- */
@ -77,6 +78,7 @@ extern void initimp(void);
struct _inittab _PyImport_Inittab[] = {
{"array", initarray},
{"_ast", init_ast},
#ifdef MS_WINDOWS
#ifndef MS_WIN64
{"audioop", initaudioop},