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
a29c9a4d
Commit
a29c9a4d
authored
Dec 28, 2016
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use dis module rather than manually disassembling the bytecode. Fixes #866.
parent
b911a237
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
31 deletions
+5
-31
setuptools/depends.py
setuptools/depends.py
+5
-31
No files found.
setuptools/depends.py
View file @
a29c9a4d
import
sys
import
imp
import
marshal
import
dis
from
distutils.version
import
StrictVersion
from
imp
import
PKG_DIRECTORY
,
PY_COMPILED
,
PY_SOURCE
,
PY_FROZEN
from
setuptools.extern
import
six
__all__
=
[
'Require'
,
'find_module'
,
'get_module_constant'
,
'extract_constant'
]
...
...
@@ -80,35 +79,10 @@ class Require:
def
_iter_code
(
code
):
"""Yield '(op,arg)' pair for each operation in code object 'code'"""
from
array
import
array
from
dis
import
HAVE_ARGUMENT
,
EXTENDED_ARG
bytes
=
array
(
'b'
,
code
.
co_code
)
eof
=
len
(
code
.
co_code
)
ptr
=
0
extended_arg
=
0
while
ptr
<
eof
:
op
=
bytes
[
ptr
]
if
op
>=
HAVE_ARGUMENT
:
arg
=
bytes
[
ptr
+
1
]
+
bytes
[
ptr
+
2
]
*
256
+
extended_arg
ptr
+=
3
if
op
==
EXTENDED_ARG
:
long_type
=
six
.
integer_types
[
-
1
]
extended_arg
=
arg
*
long_type
(
65536
)
continue
else
:
arg
=
None
ptr
+=
1
yield
op
,
arg
return
(
(
op
.
opcode
,
op
.
arg
)
for
op
in
dis
.
Bytecode
(
code
)
)
def
find_module
(
module
,
paths
=
None
):
...
...
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