[Python-checkins] python/dist/src/PC config.c,1.43,1.44

rhettinger at projects.sourceforge.net rhettinger at projects.sourceforge.net
Thu Jan 29 01:38:25 EST 2004


Update of /cvsroot/python/python/dist/src/PC
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1631/PC

Modified Files:
	config.c 
Log Message:
* 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



Index: config.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/config.c,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** config.c	21 Jan 2004 07:54:02 -0000	1.43
--- config.c	29 Jan 2004 06:37:52 -0000	1.44
***************
*** 47,50 ****
--- 47,51 ----
  extern void init_random(void);
  extern void inititertools(void);
+ extern void initcollections(void);
  extern void initheapq(void);
  extern void init_bisect(void);
***************
*** 137,140 ****
--- 138,142 ----
          {"heapq", initheapq},
  	{"itertools", inititertools},
+         {"collections", initcollections},
  	{"_symtable", init_symtable},
  	{"mmap", initmmap},




More information about the Python-checkins mailing list