mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
final patches from Neil Schemenauer for garbage collection
This commit is contained in:
parent
4e542a3d99
commit
c5007aa5c3
16 changed files with 956 additions and 18 deletions
|
@ -43,6 +43,9 @@ extern void initbinascii();
|
|||
#endif
|
||||
extern void initcmath();
|
||||
extern void initerrno();
|
||||
#ifdef WITH_CYCLE_GC
|
||||
extern void initgc();
|
||||
#endif
|
||||
#ifndef MS_WIN64
|
||||
extern void initimageop();
|
||||
#endif
|
||||
|
@ -89,6 +92,9 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
#endif
|
||||
{"cmath", initcmath},
|
||||
{"errno", initerrno},
|
||||
#ifdef WITH_CYCLE_GC
|
||||
{"gc", initgc},
|
||||
#endif
|
||||
#ifndef MS_WIN64
|
||||
{"imageop", initimageop},
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue