[Python-checkins] python/dist/src setup.py,1.175,1.176

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sat Nov 8 05:25:09 EST 2003


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1:/tmp/cvs-serv3893

Modified Files:
	setup.py 
Log Message:
Convert heapq.py to a C implementation.

Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.175
retrieving revision 1.176
diff -C2 -d -r1.175 -r1.176
*** setup.py	24 Oct 2003 18:26:26 -0000	1.175
--- setup.py	8 Nov 2003 10:24:35 -0000	1.176
***************
*** 323,326 ****
--- 323,328 ----
          # fast iterator tools implemented in C
          exts.append( Extension("itertools", ["itertoolsmodule.c"]) )
+         # heapq
+         exts.append( Extension("heapq", ["heapqmodule.c"]) )
          # operator.add() and similar goodies
          exts.append( Extension('operator', ['operator.c']) )





More information about the Python-checkins mailing list