mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
* Move collections.deque() in from the sandbox
* Add unittests, newsitem, and whatsnew * Apply to Queue.py mutex.py threading.py pydoc.py and shlex.py * Docs are forthcoming
This commit is contained in:
parent
141d4e5643
commit
756b3f3c15
15 changed files with 983 additions and 57 deletions
|
@ -46,6 +46,7 @@ extern void initxxsubtype(void);
|
|||
extern void initzipimport(void);
|
||||
extern void init_random(void);
|
||||
extern void inititertools(void);
|
||||
extern void initcollections(void);
|
||||
extern void initheapq(void);
|
||||
extern void init_bisect(void);
|
||||
extern void init_symtable(void);
|
||||
|
@ -136,6 +137,7 @@ struct _inittab _PyImport_Inittab[] = {
|
|||
{"_bisect", init_bisect},
|
||||
{"heapq", initheapq},
|
||||
{"itertools", inititertools},
|
||||
{"collections", initcollections},
|
||||
{"_symtable", init_symtable},
|
||||
{"mmap", initmmap},
|
||||
{"_csv", init_csv},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue