mirror of
https://github.com/python/cpython.git
synced 2025-11-03 03:22:27 +00:00
Prepare collections module for pure python code entries.
This commit is contained in:
parent
3035d2397f
commit
eb9798892d
6 changed files with 10 additions and 7 deletions
|
|
@ -43,7 +43,7 @@ extern void initxxsubtype(void);
|
|||
extern void initzipimport(void);
|
||||
extern void init_random(void);
|
||||
extern void inititertools(void);
|
||||
extern void initcollections(void);
|
||||
extern void init_collections(void);
|
||||
extern void init_heapq(void);
|
||||
extern void init_bisect(void);
|
||||
extern void init_symtable(void);
|
||||
|
|
@ -124,7 +124,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"_heapq", init_heapq},
|
||||
{"_lsprof", init_lsprof},
|
||||
{"itertools", inititertools},
|
||||
{"collections", initcollections},
|
||||
{"_collections", init_collections},
|
||||
{"_symtable", init_symtable},
|
||||
{"mmap", initmmap},
|
||||
{"_csv", init_csv},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue