[Python-checkins] python/dist/src setup.py,1.185,1.186

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Mon Apr 19 15:06:22 EDT 2004


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

Modified Files:
	setup.py 
Log Message:
* Restore the pure python version of heapq.py.
* Mark the C version as private and only use when available.



Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.185
retrieving revision 1.186
diff -C2 -d -r1.185 -r1.186
*** setup.py	21 Mar 2004 18:59:46 -0000	1.185
--- setup.py	19 Apr 2004 19:06:19 -0000	1.186
***************
*** 328,332 ****
          exts.append( Extension("_bisect", ["_bisectmodule.c"]) )
          # heapq
!         exts.append( Extension("heapq", ["heapqmodule.c"]) )
          # operator.add() and similar goodies
          exts.append( Extension('operator', ['operator.c']) )
--- 328,332 ----
          exts.append( Extension("_bisect", ["_bisectmodule.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