[Python-checkins] r84233 - python/branches/release27-maint/setup.py

georg.brandl python-checkins at python.org
Sat Aug 21 15:05:38 CEST 2010


Author: georg.brandl
Date: Sat Aug 21 15:05:38 2010
New Revision: 84233

Log:
Remove weakref from setup.py now that it is builtin.

Modified:
   python/branches/release27-maint/setup.py

Modified: python/branches/release27-maint/setup.py
==============================================================================
--- python/branches/release27-maint/setup.py	(original)
+++ python/branches/release27-maint/setup.py	Sat Aug 21 15:05:38 2010
@@ -453,7 +453,7 @@
         #
 
         # Some modules that are normally always on:
-        exts.append( Extension('_weakref', ['_weakref.c']) )
+        #exts.append( Extension('_weakref', ['_weakref.c']) )
 
         # array objects
         exts.append( Extension('array', ['arraymodule.c']) )


More information about the Python-checkins mailing list