summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2010-01-11 23:23:44 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2010-01-11 23:23:44 (GMT)
commit343e2ff51b8640238dbf3109494a64e6b50f1901 (patch)
treedb34e2b23409ccb8eea3dab2c08fbe6d9603fb8a /Misc
parent27e48ef369aa370382d4ead0729b467ee4742c6d (diff)
downloadcpython-343e2ff51b8640238dbf3109494a64e6b50f1901.zip
cpython-343e2ff51b8640238dbf3109494a64e6b50f1901.tar.gz
cpython-343e2ff51b8640238dbf3109494a64e6b50f1901.tar.bz2
Merged revisions 77427 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r77427 | tarek.ziade | 2010-01-12 00:15:52 +0100 (Tue, 12 Jan 2010) | 9 lines Merged revisions 77424 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r77424 | tarek.ziade | 2010-01-11 23:50:29 +0100 (Mon, 11 Jan 2010) | 1 line Fixed #5372: .o files are now always rebuilt because file age test don't work in some case ........ ................
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c09f8e6..54cbd77 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -60,6 +60,10 @@ Core and Builtins
Library
-------
+- Issue #5372: Drop the reuse of .o files in Distutils' ccompiler (since
+ Extension extra options may change the output without changing the .c
+ file). Initial patch by Collin Winter.
+
- Issue #7617: Make sure distutils.unixccompiler.UnixCCompiler recognizes
gcc when it has a fully qualified configuration prefix. Initial patch
by Arfrever.