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
e2124f4d
Commit
e2124f4d
authored
Aug 19, 2015
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extract a class for the behavior that rewrites the sys.path
parent
5cbb2ada
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
20 deletions
+30
-20
setuptools/command/easy_install.py
setuptools/command/easy_install.py
+30
-20
No files found.
setuptools/command/easy_install.py
View file @
e2124f4d
...
...
@@ -1547,26 +1547,9 @@ class PthDistributions(Environment):
self
.
dirty
=
False
@
classmethod
def
_wrap_lines
(
cls
,
lines
):
yield
cls
.
prelude
for
line
in
lines
:
yield
line
yield
cls
.
postlude
_inline
=
lambda
text
:
textwrap
.
dedent
(
text
).
strip
().
replace
(
'
\
n
'
,
'; '
)
prelude
=
_inline
(
"""
import sys
sys.__plen = len(sys.path)
"""
)
postlude
=
_inline
(
"""
import sys
new = sys.path[sys.__plen:]
del sys.path[sys.__plen:]
p = getattr(sys, '__egginsert', 0)
sys.path[p:p] = new
sys.__egginsert = p + len(new)
"""
)
@
staticmethod
def
_wrap_lines
(
lines
):
return
lines
def
add
(
self
,
dist
):
"""Add `dist` to the distribution map"""
...
...
@@ -1605,6 +1588,33 @@ class PthDistributions(Environment):
return
path
class
RewritePthDistributions
(
PthDistributions
):
@
classmethod
def
_wrap_lines
(
cls
,
lines
):
yield
cls
.
prelude
for
line
in
lines
:
yield
line
yield
cls
.
postlude
_inline
=
lambda
text
:
textwrap
.
dedent
(
text
).
strip
().
replace
(
'
\
n
'
,
'; '
)
prelude
=
_inline
(
"""
import sys
sys.__plen = len(sys.path)
"""
)
postlude
=
_inline
(
"""
import sys
new = sys.path[sys.__plen:]
del sys.path[sys.__plen:]
p = getattr(sys, '__egginsert', 0)
sys.path[p:p] = new
sys.__egginsert = p + len(new)
"""
)
PthDistributions
=
RewritePthDistributions
def
_first_line_re
():
"""
Return a regular expression based on first_line_re suitable for matching
...
...
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