[Python-checkins] python/dist/src setup.py,1.179,1.180

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Mon Jan 5 05:13:36 EST 2004


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

Modified Files:
	setup.py 
Log Message:
SF Patch #864863:  Bisect C implementation
(Contributed by Dmitry Vasiliev.)



Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.179
retrieving revision 1.180
diff -C2 -d -r1.179 -r1.180
*** setup.py	3 Dec 2003 22:34:19 -0000	1.179
--- setup.py	5 Jan 2004 10:13:33 -0000	1.180
***************
*** 323,326 ****
--- 323,328 ----
          # fast iterator tools implemented in C
          exts.append( Extension("itertools", ["itertoolsmodule.c"]) )
+         # bisect
+         exts.append( Extension("_bisect", ["_bisectmodule.c"]) )
          # heapq
          exts.append( Extension("heapq", ["heapqmodule.c"]) )





More information about the Python-checkins mailing list