Kaydet (Commit) 8d9dcd18 authored tarafından Éric Araujo's avatar Éric Araujo

Merge from 3.2 (#9302 fix and other changes)

...@@ -57,6 +57,7 @@ docs@python.org), and we'll be glad to correct the problem. ...@@ -57,6 +57,7 @@ docs@python.org), and we'll be glad to correct the problem.
* Carl Feynman * Carl Feynman
* Dan Finnie * Dan Finnie
* Hernán Martínez Foffani * Hernán Martínez Foffani
* Michael Foord
* Stefan Franke * Stefan Franke
* Jim Fulton * Jim Fulton
* Peter Funk * Peter Funk
...@@ -144,6 +145,7 @@ docs@python.org), and we'll be glad to correct the problem. ...@@ -144,6 +145,7 @@ docs@python.org), and we'll be glad to correct the problem.
* Ross Moore * Ross Moore
* Sjoerd Mullender * Sjoerd Mullender
* Dale Nagata * Dale Nagata
* Trent Nelson
* Michal Nowikowski * Michal Nowikowski
* Steffen Daode Nurpmeso * Steffen Daode Nurpmeso
* Ng Pheng Siong * Ng Pheng Siong
...@@ -186,6 +188,7 @@ docs@python.org), and we'll be glad to correct the problem. ...@@ -186,6 +188,7 @@ docs@python.org), and we'll be glad to correct the problem.
* Joakim Sernbrant * Joakim Sernbrant
* Justin Sheehy * Justin Sheehy
* Charlie Shepherd * Charlie Shepherd
* Yue Shuaijie
* SilentGhost * SilentGhost
* Michael Simcich * Michael Simcich
* Ionel Simionescu * Ionel Simionescu
...@@ -230,5 +233,3 @@ docs@python.org), and we'll be glad to correct the problem. ...@@ -230,5 +233,3 @@ docs@python.org), and we'll be glad to correct the problem.
* Moshe Zadka * Moshe Zadka
* Milan Zamazal * Milan Zamazal
* Cheng Zhang * Cheng Zhang
* Trent Nelson
* Michael Foord
This diff is collapsed.
...@@ -20,9 +20,8 @@ from distutils.tests import support ...@@ -20,9 +20,8 @@ from distutils.tests import support
def _make_ext_name(modname): def _make_ext_name(modname):
if os.name == 'nt': if os.name == 'nt' and sys.executable.endswith('_d.exe'):
if sys.executable.endswith('_d.exe'): modname += '_d'
modname += '_d'
return modname + sysconfig.get_config_var('SO') return modname + sysconfig.get_config_var('SO')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment