Skip to main content

Python cross-version byte-code disassembler and marshal routines

Project description

buildstatus Supported Python Versions

xdis

Cross-Python bytecode Disassembler and Marshal routines

Introduction

The Python dis module allows you to disassemble bytecode from the same version of Python that you are running on. But what about bytecode from different versions?

That’s what this package is for. It can “marshal load” Python bytecodes from different versions of Python. The command-line routine pydisasm will show disassembly output using Python 3.6 disassembly conventions.

It accepts bytecodes from Python version 1.5 to 3.6 or so. The code requires Python 2.4 or later and has been tested on Python running lots of Python versions.

To install versions for Python before 2.6 install via eggs or use the python-2.4 branch of git in github.

Installation

This uses setup.py, so it follows the standard Python routine:

pip install -r requirements.txt
pip install -r requirements-dev.txt
python setup.py install # may need sudo
# or if you have pyenv:
python setup.py develop

A GNU makefile is also provided so make install (possibly as root or sudo) will do the steps above.

Testing

make check

A GNU makefile has been added to smooth over setting running the right command, and running tests from fastest to slowest.

If you have remake installed, you can see the list of all tasks including tests via remake --tasks.

Usage

Run

./bin/pydisasm -h

for usage help.

As a drop-in replacement for dis

xdis also provides some support as a drop in replacement for the the Python library dis module. This is may be desirable when you want to use the improved API from Python 3.4 or later from an earlier Python version.

For example:

>>> # works in Python 2 and 3
>>> import xdis.std as dis
>>> [x.opname for x in dis.Bytecode('a = 10')]
['LOAD_CONST', 'STORE_NAME', 'LOAD_CONST', 'RETURN_VALUE']

There may some small differences in output produced for formatted disassembly or how we show compiler flags. We expect you’ll find the xdis output more informative though.

See Also

Release history Release notifications | RSS feed

This version

3.6.3

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

xdis-3.6.3.tar.gz (167.3 kB view hashes)

Uploaded Source

Built Distributions

xdis-3.6.3-py36-none-any.whl (73.3 kB view hashes)

Uploaded Python 3.6

xdis-3.6.3-py34-none-any.whl (73.3 kB view hashes)

Uploaded Python 3.4

xdis-3.6.3-py33-none-any.whl (73.3 kB view hashes)

Uploaded Python 3.3

xdis-3.6.3-py26-none-any.whl (73.4 kB view hashes)

Uploaded Python 2.6

xdis-3.6.3-py3.6.egg (151.6 kB view hashes)

Uploaded Source

xdis-3.6.3-py3.5-none-any.whl (73.3 kB view hashes)

Uploaded Python 3

xdis-3.6.3-py3.4.egg (154.7 kB view hashes)

Uploaded Source

xdis-3.6.3-py3.3.egg (155.3 kB view hashes)

Uploaded Source

xdis-3.6.3-py2.6.egg (151.6 kB view hashes)

Uploaded Source

xdis-3.6.3-py2.5.egg (161.1 kB view hashes)

Uploaded Source

xdis-3.6.3-py2.4.egg (163.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page