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
dc316c0f
Commit
dc316c0f
authored
Jul 04, 2013
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Plain Diff
Merge with 0.7.8
parents
6ac7256c
3d3aae58
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
.hgtags
.hgtags
+2
-0
CHANGES.txt
CHANGES.txt
+14
-0
pkg_resources.py
pkg_resources.py
+2
-1
No files found.
.hgtags
View file @
dc316c0f
...
...
@@ -76,3 +76,5 @@ cae9127e0534fc46d7ddbc11f68dc88fd9311459 0.6.48
1506fa538fff01e70424530a32a44e070720cf3c 0.7.7
5679393794978a1d3e1e087472b8a0fdf3d8423c 0.8b5
26f59ec0f0f69714d28a891aaad048e3b9fcd6f7 0.8b6
f657df1f1ed46596d236376649c99a470662b4ba 0.6.49
236de1de68b14230036147c7c9e7c09b215b53ee 0.7.8
CHANGES.txt
View file @
dc316c0f
...
...
@@ -9,6 +9,12 @@ CHANGES
* Code base now runs on Python 2.4 - Python 3.3 without Python 2to3
conversion.
-----
0.7.8
-----
* Distribute #375: Yet another fix for yet another regression.
-----
0.7.7
-----
...
...
@@ -82,6 +88,14 @@ Added several features that were slated for setuptools 0.6c12:
* Issue #3: Fixed NameError in SSL support.
------
0.6.49
------
* Move warning check in ``get_cache_path`` to follow the directory creation
to avoid errors when the cache path does not yet exist. Fixes the error
reported in #375.
------
0.6.48
------
...
...
pkg_resources.py
View file @
dc316c0f
...
...
@@ -1018,13 +1018,14 @@ variable to point to an accessible directory.
extract, as it tracks the generated names for possible cleanup later.
"""
extract_path = self.extraction_path or get_default_cache()
self._warn_unsafe_extraction_path(extract_path)
target_path = os.path.join(extract_path, archive_name+'
-
tmp
', *names)
try:
_bypass_ensure_directory(target_path)
except:
self.extraction_error()
self._warn_unsafe_extraction_path(extract_path)
self.cached_files[target_path] = 1
return target_path
...
...
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