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
f2a0b309
Commit
f2a0b309
authored
Jul 02, 2016
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract template as variable to avoid line continuation.
parent
349e3313
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
setuptools/msvc.py
setuptools/msvc.py
+2
-2
setuptools/tests/test_msvc.py
setuptools/tests/test_msvc.py
+1
-1
No files found.
setuptools/msvc.py
View file @
f2a0b309
...
...
@@ -219,8 +219,8 @@ def _augment_exception(exc, version, arch=''):
if
"vcvarsall"
in
message
.
lower
()
or
"visual c"
in
message
.
lower
():
# Special error message if MSVC++ not installed
message
=
'Microsoft Visual C++ %0.1f is required (%s).'
%
\
(
version
,
message
)
tmpl
=
'Microsoft Visual C++ %0.1f is required (%s).'
message
=
tmpl
%
version
,
message
msdownload
=
r'www.microsoft.com/download/details.aspx?id=%d'
if
version
==
9.0
:
if
arch
.
lower
().
find
(
'ia64'
)
>
-
1
:
...
...
setuptools/tests/test_msvc.py
View file @
f2a0b309
"""
Tests for msvc
9compiler
.
Tests for msvc
support module
.
"""
import
os
...
...
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