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
465364f3
Commit
465364f3
authored
Sep 09, 2015
by
Larry Hastings
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace fixes to make the commit hook on hg.python.org happy.
parent
fd5d6fbe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
_msvccompiler.py
_msvccompiler.py
+2
-2
tests/test_msvccompiler.py
tests/test_msvccompiler.py
+1
-1
No files found.
_msvccompiler.py
View file @
465364f3
...
...
@@ -100,7 +100,7 @@ def _get_vc_env(plat_spec):
(
line
.
partition
(
'='
)
for
line
in
out
.
splitlines
())
if
key
and
value
}
if
vcruntime
:
env
[
'py_vcruntime_redist'
]
=
vcruntime
return
env
...
...
@@ -236,7 +236,7 @@ class MSVCCompiler(CCompiler) :
'/nologo'
,
'/Ox'
,
'/W3'
,
'/GL'
,
'/DNDEBUG'
]
self
.
compile_options
.
append
(
'/MD'
if
self
.
_vcruntime_redist
else
'/MT'
)
self
.
compile_options_debug
=
[
'/nologo'
,
'/Od'
,
'/MDd'
,
'/Zi'
,
'/W3'
,
'/D_DEBUG'
]
...
...
tests/test_msvccompiler.py
View file @
465364f3
...
...
@@ -77,7 +77,7 @@ class msvccompilerTestCase(support.TempdirManager,
compiler
.
initialize
()
dll
=
compiler
.
_vcruntime_redist
self
.
assertTrue
(
os
.
path
.
isfile
(
dll
))
compiler
.
_copy_vcruntime
(
tempdir
)
self
.
assertFalse
(
os
.
path
.
isfile
(
os
.
path
.
join
(
...
...
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