atexit is a builtin module now, provide that on Windows.

This commit is contained in:
Thomas Heller 2007-07-13 13:13:40 +00:00
parent 19b52545df
commit 7f16288134
2 changed files with 5 additions and 0 deletions

View file

@ -60,6 +60,7 @@ extern void init_lsprof(void);
extern void init_ast(void);
extern void init_types(void);
extern void init_fileio(void);
extern void initatexit(void);
/* tools/freeze/makeconfig.py marker for additional "extern" */
/* -- ADDMODULE MARKER 1 -- */
@ -147,6 +148,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_types", init_types},
{"_fileio", init_fileio},
{"atexit", initatexit},
/* Sentinel */
{0, 0}

View file

@ -424,6 +424,9 @@
<File
RelativePath="..\Python\ast.c">
</File>
<File
RelativePath="..\Modules\atexitmodule.c">
</File>
<File
RelativePath="..\Modules\audioop.c">
</File>