mirror of
https://github.com/python/cpython.git
synced 2026-04-04 19:13:16 +00:00
Added cPickle and cStringIO
This commit is contained in:
parent
a5e2ece757
commit
d9d2968de1
1 changed files with 7 additions and 0 deletions
|
|
@ -146,6 +146,10 @@ extern void initgdbm();
|
|||
#ifdef USE_ZLIB
|
||||
extern void initzlib();
|
||||
#endif
|
||||
|
||||
/* Testing: */
|
||||
extern void initcPickle();
|
||||
extern void initcStringIO();
|
||||
/* -- ADDMODULE MARKER 1 -- */
|
||||
|
||||
extern void PyMarshal_Init();
|
||||
|
|
@ -249,6 +253,9 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
#ifdef USE_ZLIB
|
||||
{"zlib", initzlib},
|
||||
#endif
|
||||
/* Testing: */
|
||||
{"cPickle", initcPickle},
|
||||
{"cStringIO", initcStringIO},
|
||||
|
||||
/* -- ADDMODULE MARKER 2 -- */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue