mirror of
https://github.com/python/cpython.git
synced 2026-01-06 07:22:09 +00:00
Added gdbm (if USE_GDBM defined)
This commit is contained in:
parent
b280e2bac2
commit
81aa0e2888
1 changed files with 6 additions and 0 deletions
|
|
@ -133,6 +133,9 @@ extern void initselect();
|
|||
#ifdef USE_WASTE
|
||||
extern void initwaste();
|
||||
#endif
|
||||
#ifdef USE_GDBM
|
||||
extern void initgdbm();
|
||||
#endif
|
||||
/* -- ADDMODULE MARKER 1 -- */
|
||||
|
||||
extern void PyMarshal_Init();
|
||||
|
|
@ -223,6 +226,9 @@ struct _inittab inittab[] = {
|
|||
#ifdef USE_WASTE
|
||||
{"waste", initwaste},
|
||||
#endif
|
||||
#ifdef USE_GDBM
|
||||
{"gdbm", initgdbm},
|
||||
#endif USE_GDBM
|
||||
|
||||
/* -- ADDMODULE MARKER 2 -- */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue