summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-09-30 20:29:48 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-09-30 20:29:48 (GMT)
commit6a9c0e50a9d0e09011f59e7eca060473141e8f43 (patch)
tree1551204f1695a120b399fec51e9ea8800384ccea /Misc
parentc8fb4fc96e350ac47881c508556d435bb7605687 (diff)
parent3c678c33a770ce7b465163aecb09fba07e1e8daa (diff)
downloadcpython-6a9c0e50a9d0e09011f59e7eca060473141e8f43.zip
cpython-6a9c0e50a9d0e09011f59e7eca060473141e8f43.tar.gz
cpython-6a9c0e50a9d0e09011f59e7eca060473141e8f43.tar.bz2
Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except when necessary.
Patch by Oscar Benjamin.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 5b7b630..5015946 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -102,6 +102,7 @@ Thomas Bellman
Alexander “Саша” Belopolsky
Eli Bendersky
David Benjamin
+Oscar Benjamin
Andrew Bennetts
Andy Bensky
Bennett Benson
diff --git a/Misc/NEWS b/Misc/NEWS
index a5548377..fa5d85a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #12641: Avoid passing "-mno-cygwin" to the mingw32 compiler, except
+ when necessary. Patch by Oscar Benjamin.
+
- Issue #5845: In site.py, only load readline history from ~/.python_history
if no history has been read already. This avoids double writes to the
history file at shutdown.