From fa8fa0caf4681b0d834121399d54588ae0a965cb Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 21 Aug 2010 13:05:38 +0000 Subject: [PATCH] Remove weakref from setup.py now that it is builtin. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7d5d30c2cb..36257ed421 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']) ) -- 2.50.1