diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-04-01 18:29:47 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-04-01 18:29:47 (GMT) |
commit | 93e938440213c9e032b4c4e1af6bb20a1ce644a1 (patch) | |
tree | 1b9b04d614de81cd0cbb21ce2d965a7836cea3b2 /Misc | |
parent | 530698235d8397346532a31dd50d5e39152d0c36 (diff) | |
download | cpython-93e938440213c9e032b4c4e1af6bb20a1ce644a1.zip cpython-93e938440213c9e032b4c4e1af6bb20a1ce644a1.tar.gz cpython-93e938440213c9e032b4c4e1af6bb20a1ce644a1.tar.bz2 |
Backport 54644:
SF #1685563, MSVCCompiler creates redundant and long PATH strings
If MSVCCompiler.initialize() was called multiple times, the path
would get duplicated. On Windows, this is a problem because the
path is limited to 4k. There's no benefit in adding a path multiple
times, so prevent that from occuring. We also normalize the path
before checking for duplicates so things like /a and /a/ won't both
be stored.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -219,6 +219,8 @@ Extension Modules Library ------- +- Patch #1685563: remove (don't add) duplicate paths in distutils.MSVCCompiler. + - Bug #978833: Revert r50844, as it broke _socketobject.dup. - Bug #1675967: re patterns pickled with Python 2.4 and earlier can |