From: Georg Brandl Date: Sat, 21 Aug 2010 13:05:38 +0000 (+0000) Subject: Remove weakref from setup.py now that it is builtin. X-Git-Tag: v2.7.1rc1~381 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa8fa0caf4681b0d834121399d54588ae0a965cb;p=thirdparty%2FPython%2Fcpython.git Remove weakref from setup.py now that it is builtin. --- diff --git a/setup.py b/setup.py index 7d5d30c2cbc9..36257ed421c0 100644 --- a/setup.py +++ b/setup.py @@ -453,7 +453,7 @@ class PyBuildExt(build_ext): # # 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']) )