Accepting request 744161 from devel:languages:python

- 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

OBS-URL: https://build.opensuse.org/request/show/744161
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-xdis?expand=0&rev=4
This commit is contained in:
2019-10-31 17:18:11 +00:00
committed by Git OBS Bridge
4 changed files with 18 additions and 5 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0ab930761e05c13031f098b9aa708c2fe22bf13535e27c675bcce3a18aef0003
size 171509

3
4.1.1.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e3177e68744c6a9c45a2c5ad77f709767c7b476b4d1d46843e0a5be932a7cd55
size 176732

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Wed Oct 30 12:39:55 UTC 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 4 08:29:23 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@@ -18,11 +18,10 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-xdis
Version: 4.0.4
Version: 4.1.1
Release: 0
Summary: Python cross-version byte-code disassembler and marshal routines
License: GPL-2.0-only
Group: Development/Languages/Python
URL: https://github.com/rocky/python-xdis/
Source: https://github.com/rocky/python-xdis/archive/%{version}.tar.gz
BuildRequires: %{python_module setuptools}