Teach Windows build about the _weakref module.

This commit is contained in:
Tim Peters 2001-02-02 00:07:07 +00:00
parent 2492a20579
commit 747d5b63db
3 changed files with 18 additions and 1 deletions

View file

@ -43,6 +43,7 @@ extern void init_locale(void);
#endif
extern void init_codecs(void);
extern void initxreadlines(void);
extern void init_weakref(void);
/* XXX tim: what's the purpose of ADDMODULE MARKER? */
/* -- ADDMODULE MARKER 1 -- */
@ -95,6 +96,7 @@ struct _inittab _PyImport_Inittab[] = {
{"_codecs", init_codecs},
{"xreadlines", initxreadlines},
{"_weakref", init_weakref},
/* XXX tim: what's the purpose of ADDMODULE MARKER? */
/* -- ADDMODULE MARKER 2 -- */