From b82489dd7fbee1b4be80f7a4cea88eb68ee51358 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Tue, 14 Sep 2010 19:41:23 +0000 Subject: [PATCH] setup.py was trying to build _weakref which is redundant as it's a built-in module. Closes issue #9848. Thanks to Arfrever Frehtes Taifersar Arahesis for the bug report. --- Misc/NEWS | 3 +++ setup.py | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index d528d3c363..43c55df5f1 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -183,6 +183,9 @@ Tests Build ----- +- Issue #9848: Stopping trying to build _weakref in setup.py as it is a + built-in module. + - Issue #9806: python-config now has an ``--extension-suffix`` option that outputs the suffix for dynamic libraries including the ABI version name defined by PEP 3149. diff --git a/setup.py b/setup.py index 85cd6057c9..861f9ef04d 100644 --- a/setup.py +++ b/setup.py @@ -456,9 +456,6 @@ class PyBuildExt(build_ext): # on pretty much any POSIXish platform. # - # Some modules that are normally always on: - exts.append( Extension('_weakref', ['_weakref.c']) ) - # array objects exts.append( Extension('array', ['arraymodule.c']) ) # complex math library functions -- 2.49.0