Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e7d9f9e4
Commit
e7d9f9e4
authored
Dec 15, 2010
by
Éric Araujo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558).
parent
9f92997f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_ext.py
+1
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/distutils/command/build_ext.py
View file @
e7d9f9e4
...
...
@@ -214,7 +214,7 @@ class build_ext(Command):
elif
MSVC_VERSION
==
8
:
self
.
library_dirs
.
append
(
os
.
path
.
join
(
sys
.
exec_prefix
,
'PC'
,
'VS8.0'
,
'win32release'
))
'PC'
,
'VS8.0'
))
elif
MSVC_VERSION
==
7
:
self
.
library_dirs
.
append
(
os
.
path
.
join
(
sys
.
exec_prefix
,
'PC'
,
'VS7.1'
))
...
...
Misc/NEWS
View file @
e7d9f9e4
...
...
@@ -17,6 +17,8 @@ Core and Builtins
Library
-------
- Issue #9558: Fix distutils.command.build_ext with VS 8.0.
- Issue #10667: Fast path for collections.Counter().
- Issue #10695: passing the port as a string value to telnetlib no longer
...
...
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