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
2e35b91e
Commit
2e35b91e
authored
Jun 14, 2014
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove documentation which seems irrelevant to this method.
parent
ca53b24b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
14 deletions
+2
-14
pkg_resources.py
pkg_resources.py
+2
-14
No files found.
pkg_resources.py
View file @
2e35b91e
...
...
@@ -1554,20 +1554,8 @@ class ZipManifests(dict):
Build
a
dictionary
similar
to
the
zipimport
directory
caches
,
except
instead
of
tuples
,
store
ZipInfo
objects
.
The
translation
of
the
tuple
is
as
follows
:
*
[
0
]
-
zipinfo
.
filename
on
stock
pythons
this
needs
"/"
-->
os
.
sep
on
pypy
it
is
the
same
(
one
reason
why
distribute
did
work
in
some
cases
on
pypy
and
win32
).
*
[
1
]
-
zipinfo
.
compress_type
*
[
2
]
-
zipinfo
.
compress_size
*
[
3
]
-
zipinfo
.
file_size
*
[
4
]
-
len
(
utf
-
8
encoding
of
filename
)
if
zipinfo
&
0x800
len
(
ascii
encoding
of
filename
)
otherwise
*
[
5
]
-
(
zipinfo
.
date_time
[
0
]
-
1980
)
<<
9
|
zipinfo
.
date_time
[
1
]
<<
5
|
zipinfo
.
date_time
[
2
]
*
[
6
]
-
(
zipinfo
.
date_time
[
3
]
-
1980
)
<<
11
|
zipinfo
.
date_time
[
4
]
<<
5
|
(
zipinfo
.
date_time
[
5
]
//
2
)
*
[
7
]
-
zipinfo
.
CRC
Use
a
platform
-
specific
path
separator
(
os
.
sep
)
for
the
path
keys
for
compatibility
with
pypy
on
Windows
.
"""
with ContextualZipFile(path) as zfile:
items = (
...
...
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