Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
c2fcb01d
Commit
c2fcb01d
authored
Aug 02, 2020
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'clean' of
https://github.com/pypa/distutils
into master
parents
5578b446
51b75e95
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
4 deletions
+43
-4
setuptools/_distutils/_msvccompiler.py
setuptools/_distutils/_msvccompiler.py
+4
-2
setuptools/_distutils/ccompiler.py
setuptools/_distutils/ccompiler.py
+2
-2
setuptools/_distutils/tests/test_msvccompiler.py
setuptools/_distutils/tests/test_msvccompiler.py
+37
-0
No files found.
setuptools/_distutils/_msvccompiler.py
View file @
c2fcb01d
...
...
@@ -15,7 +15,9 @@ for older versions in distutils.msvc9compiler and distutils.msvccompiler.
import
os
import
subprocess
import
winreg
import
contextlib
with
contextlib
.
suppress
(
ImportError
):
import
winreg
from
distutils.errors
import
DistutilsExecError
,
DistutilsPlatformError
,
\
CompileError
,
LibError
,
LinkError
...
...
@@ -501,7 +503,7 @@ class MSVCCompiler(CCompiler) :
log
.
debug
(
"skipping %s (up-to-date)"
,
output_filename
)
def
spawn
(
self
,
cmd
):
env
=
dict
(
os
.
environ
,
path
=
self
.
_paths
)
env
=
dict
(
os
.
environ
,
PATH
=
self
.
_paths
)
return
super
().
spawn
(
cmd
,
env
=
env
)
# -- Miscellaneous methods -----------------------------------------
...
...
setuptools/_distutils/ccompiler.py
View file @
c2fcb01d
...
...
@@ -906,8 +906,8 @@ int main (int argc, char **argv) {
def
execute
(
self
,
func
,
args
,
msg
=
None
,
level
=
1
):
execute
(
func
,
args
,
msg
,
self
.
dry_run
)
def
spawn
(
self
,
cmd
):
spawn
(
cmd
,
dry_run
=
self
.
dry_run
)
def
spawn
(
self
,
cmd
,
**
kwargs
):
spawn
(
cmd
,
dry_run
=
self
.
dry_run
,
**
kwargs
)
def
move_file
(
self
,
src
,
dst
):
return
move_file
(
src
,
dst
,
dry_run
=
self
.
dry_run
)
...
...
setuptools/_distutils/tests/test_msvccompiler.py
View file @
c2fcb01d
...
...
@@ -2,6 +2,7 @@
import
sys
import
unittest
import
os
import
threading
from
distutils.errors
import
DistutilsPlatformError
from
distutils.tests
import
support
...
...
@@ -74,6 +75,42 @@ class msvccompilerTestCase(support.TempdirManager,
else
:
raise
unittest
.
SkipTest
(
"VS 2015 is not installed"
)
class
CheckThread
(
threading
.
Thread
):
exc_info
=
None
def
run
(
self
):
try
:
super
().
run
()
except
Exception
:
self
.
exc_info
=
sys
.
exc_info
()
def
__bool__
(
self
):
return
not
self
.
exc_info
class
TestSpawn
(
unittest
.
TestCase
):
def
test_concurrent_safe
(
self
):
"""
Concurrent calls to spawn should have consistent results.
"""
import
distutils._msvccompiler
as
_msvccompiler
compiler
=
_msvccompiler
.
MSVCCompiler
()
compiler
.
_paths
=
"expected"
inner_cmd
=
'import os; assert os.environ["PATH"] == "expected"'
command
=
[
'python'
,
'-c'
,
inner_cmd
]
threads
=
[
CheckThread
(
target
=
compiler
.
spawn
,
args
=
[
command
])
for
n
in
range
(
100
)
]
for
thread
in
threads
:
thread
.
start
()
for
thread
in
threads
:
thread
.
join
()
assert
all
(
threads
)
def
test_suite
():
return
unittest
.
makeSuite
(
msvccompilerTestCase
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment