Version: 5.0.6-bp155.2.12
* Thu Apr 16 2020 Tomáš Chvátal <tchvatal@suse.com>
- Update to 4.2.4:
* Add Instruction instance methods: #Instruction.is_jump() and #Instruction.jumps_forward()
* Mon Mar 09 2020 Tomáš Chvátal <tchvatal@suse.com>
- Add patch to work with 3.8.2:
* py382.patch
* Tue Dec 03 2019 Tomáš Chvátal <tchvatal@suse.com>
- Update to 4.1.3:
* Various dependency fixes
* Wed Nov 06 2019 Tomáš Chvátal <tchvatal@suse.com>
- Update to 4.1.2:
* Python 3.8.0 magic changed
* More Pypy 3.6 tolerance
* Fixed DeprecationWarning; thanks to laike9m
* Wed Oct 30 2019 Tomáš Chvátal <tchvatal@suse.com>
- Update to 4.1.1:
* Fix unmarshaling 3.4+ object_ref bugs. A big thanks to Armin Rigo of the PyPy team.
* Add Pypy 3.6+ disassembly, e.g. pypy3.6-7.1.0 and pypy3.6-7.1.1
* Add Python 3.7.5, 2.7.16, 2.7.17rc1, and 2.7.15candidate1 as a valid releases
* convert unmarshal if .. elif code to a dictionary lookup with function entries
* Handle newer Python importlib - thanks to laike9m
* Add early bytecodes: 1.0, 1.1, 1.2, and 1.6. Going off of pycdc bytecode since this is the only bytecode for these versions I know of
* Fix bug in Python 3.x decompiling 2.x that contains strings with non-ascii characters
* More generally, better handling of non-ascii Python 2 strings in both input and output in Python 3
* pypy 3.6-7.1.0 tolerance
* Fri Oct 04 2019 Tomáš Chvátal <tchvatal@suse.com>
- Update to 4.0.4:
* Add most-recent 3.8 magic number
* Remove some 3.8 invalid escape warnings
* Mon Aug 19 2019 Tomáš Chvátal <tchvatal@suse.com>
- Update to 4.0.3:
* Support 3.8.0beta2; Code38 type with posonlyargcount field
* Add Python versions 3.4.10, 3.7.4 and 3.6.9
* script no longer works to install pydisasm; entry_points still works
* Add pypy 3.6 opcode formatting for MAKE_FUNCTION and EXTENDED_ARG
* Add format_CALL_function and use it or pypy36
* Start using "blacken" to reformat Python files
Version: 5.0.6-bp153.1.24
* Thu Dec 31 2020 olaf@aepfle.de
- update to 5.0.6:
* Add support for Python2.7 on Ubuntu 20.04
* Bump versions for Python 3.8.6 and 3.5.10
* `VERSION` -> `__version__` because Python prefers it that way
- Fix issue#71 with python-xdis.patch
* Wed Sep 16 2020 Dirk Mueller <dmueller@suse.com>
- udpate to 5.0.4:
* Add python versions 3.6.12, 3.7.9
* extended arg disassembly handling for {LOAD,STORE}_ATTR
* Add versions 3.8.5, 3.7.8, and 3.6.11
* Clarify changes to 3.8 `ROT_FOUR`
* Update 3.9 magics and opcodes
* Add Python 3.8.4 as a 3.8 release
* pydisasm.py Python 3.3 tolerance
* Make pydoc's version reporting show xdis's version
* Tue Jul 21 2020 Marketa Calabkova <mcalabkova@suse.com>
- Update to 5.0.1
* Routines for extracting line and offset information from code objects was added.
* Disassembly format and options have simplified and improved.
* Before, we had separate flags and command-line options for whether to show just
the header, and whether to include bytecode ops in the output. Now there is just
a single parameter called `asm_format`, and choice option `--format` (short option `-F`).
* Small fixes and improvements
* Wed Jun 03 2020 Steve Kowalik <steven.kowalik@suse.com>
- Update to 4.6.1:
* A portable version of types.CodeType was rewritten.
* Python 3.8-ish `replace()` method has been added to the portable code types
* Portable code type classes `Code13`, `Code15` have been added to more precisely distinguish Python 1.3 and 1.5 code types. The other portable code classes are `Code2`, `Code3`, and `Code38`.
* the to_native() conversts a portable code type into a native code type
* the `decode_lineno_tab()` method on portable code types from Python 1.5 on decompresses the Python encode line number table into a dictionary mapping offset to line number.
* The module `xdis.code` has been remamed to `xdis.codetype`.
* `load_module()` and `load_module_from_file_object()` now return
a couple more parameters.
* --asm option fixes
* Show sip hash in 3.7+ when that is used
* Handle PEP 552 bytecode-file variations more properly
* Detect more intermediate Python versions in `load_code_from_file_object()`
* 3.8+ posonlyargcount in assembly... rename Kw-only field to Keyword-only
* Add 3.5 canonic bytecode version Marshal `dumps()`
* convert from byte() to str() in dumps() when needed in 3.x
* to_native() convert to bytes from string when needed in 3.x.
* clean up loading code by using float version values rather than magic values
* `stack_effects()` checked against Python 3.4+ is now in place.
* Added `stack_effects()` function to `std.py` since this is part of the API
* `cross_xdis.py` file/module now has `dis.py` functions split off from `bytecod
e.py`
* `Instructions` class is in its own module too.
* Python 2.7.18 added into magics.
* Fix bug in marshal for 3.8+ (include posonlyargcount)
* Go over stack effects from 2.5 to 3.4 using and idea from Maynard
* Expand stack-effect testing
* 3.8.3 added as a valid 3.8 release
* command program `pydisasm` disassembles more Python source files now
* Add better arguemnt formatting on `CALL_FUNCTION` and `MAKE_FUNCTION`
* bytecode.py now has `distb`
* opcode modules now have variable `python_implemenation` which is either "CPyth
on" or "PyPY"
* Reformat a number of files using blacken, and lint using flymake
* Update `__init__.py` exports based on what is used in projects `uncompyle6`, `
decompyle3`, `trepan3k`,
`xasm` and `x-python`
* Remove duplicate `findlinestarts()` code. Remove testing on the Python version and simplify
this where possible.
* get_opcode_module allows either a float and string datatype for the version, and coverts
the bytecode datatype when needed
* Fix a bugs in marshal and unmarshal
* Go over magics numbers, yet again
* Fix a bad bug in handling byte constants in 3.x.
- Skip a flaky test.
Version: 4.2.4-bp152.1.1
* Thu Apr 16 2020 Tomá? Chvátal <tchvatal@suse.com>
- Update to 4.2.4:
* Add Instruction instance methods: #Instruction.is_jump() and #Instruction.jumps_forward()
* Tue Mar 24 2020 pgajdos@suse.com
- version update to 4.2.3
* Add Python versions: 3.7.7, 3.8.2, and 3.9.0alpha1,
* Create a class for "STORE" instructions
* facilitate code type freezing (PR #57)
* Warn about cross-decompilation problems for byte types
- deleted patches
- py382.patch (upstreamed)
* Mon Mar 09 2020 Tomá? Chvátal <tchvatal@suse.com>
- Add patch to work with 3.8.2:
* py382.patch
* Thu Feb 06 2020 Marketa Calabkova <mcalabkova@suse.com>
- update to 4.2.2
* Add Python versions: 3.6.10, 3.7.6. 3.8.1
* Update 3.9-dev to 3.9.0alpha2
* Add interpolation of FUNCTION_CALL_{KW,EX} argument for 3.7-3.9
* Better output of complex type values
* Correct and clean up compiler flags.
* Tue Dec 03 2019 Tomá? Chvátal <tchvatal@suse.com>
- Update to 4.1.3:
* Various dependency fixes
* Wed Nov 06 2019 Tomá? Chvátal <tchvatal@suse.com>
- Update to 4.1.2:
* Python 3.8.0 magic changed
* More Pypy 3.6 tolerance
* Fixed DeprecationWarning; thanks to laike9m
* Wed Oct 30 2019 Tomá? Chvátal <tchvatal@suse.com>
- Update to 4.1.1:
* Fix unmarshaling 3.4+ object_ref bugs. A big thanks to Armin Rigo of the PyPy team.
* Add Pypy 3.6+ disassembly, e.g. pypy3.6-7.1.0 and pypy3.6-7.1.1
* Add Python 3.7.5, 2.7.16, 2.7.17rc1, and 2.7.15candidate1 as a valid releases
* convert unmarshal if .. elif code to a dictionary lookup with function entries
* Handle newer Python importlib - thanks to laike9m
* Add early bytecodes: 1.0, 1.1, 1.2, and 1.6. Going off of pycdc bytecode since this is the only bytecode for these versions I know of
* Fix bug in Python 3.x decompiling 2.x that contains strings with non-ascii characters
* More generally, better handling of non-ascii Python 2 strings in both input and output in Python 3
* pypy 3.6-7.1.0 tolerance
* Fri Oct 04 2019 Tomá? Chvátal <tchvatal@suse.com>
- Update to 4.0.4:
* Add most-recent 3.8 magic number
* Remove some 3.8 invalid escape warnings
* Mon Aug 19 2019 Tomá? Chvátal <tchvatal@suse.com>
- Update to 4.0.3:
* Support 3.8.0beta2; Code38 type with posonlyargcount field
* Add Python versions 3.4.10, 3.7.4 and 3.6.9
* script no longer works to install pydisasm; entry_points still works
* Add pypy 3.6 opcode formatting for MAKE_FUNCTION and EXTENDED_ARG
* Add format_CALL_function and use it or pypy36
* Start using "blacken" to reformat Python files
* Fri Jun 28 2019 Andreas Färber <afaerber@suse.de>
- Initial (v4.0.2)