summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2010-09-14 19:41:23 (GMT)
committerBrett Cannon <bcannon@gmail.com>2010-09-14 19:41:23 (GMT)
commitb82489dd7fbee1b4be80f7a4cea88eb68ee51358 (patch)
tree00fc286c6770ae3b2ebd65eb0da6f4b151511ccf /Misc
parentf7328d026be6c2ee0bdd8dac32243f73b6b0563a (diff)
downloadcpython-b82489dd7fbee1b4be80f7a4cea88eb68ee51358.zip
cpython-b82489dd7fbee1b4be80f7a4cea88eb68ee51358.tar.gz
cpython-b82489dd7fbee1b4be80f7a4cea88eb68ee51358.tar.bz2
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.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d528d3c..43c55df 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.