forked from pool/python-bytecode
Compare commits
8 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| c0a6a67c71 | |||
| 58d50de9a2 | |||
| 7629867e7e | |||
| 8ccbf078d7 | |||
| de907faf65 | |||
| e440c1fd34 | |||
| 864bfb699e | |||
| 4d91dcd4a4 |
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7263239a8d3f70fc7c303862b20cd2c6788052e37ce0a26e67309d280e985984
|
||||
size 97976
|
||||
3
bytecode-0.17.0.tar.gz
Normal file
3
bytecode-0.17.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0c37efa5bd158b1b873f530cceea2c645611d55bd2dc2a4758b09f185749b6fd
|
||||
size 105863
|
||||
@@ -1,3 +1,46 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 10 06:59:32 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 0.17.0
|
||||
* Add support for Python 3.14 PR #166
|
||||
Support for Python 3.14, comes with a number of changes reflecting changes in
|
||||
CPython bytecode itself:
|
||||
- introduced an enum for BINARY_OP argument which now supports subscribe.
|
||||
When disassembling the enum is always used, when creating bytecode from
|
||||
scratch integer values are coerced into the right enum member.
|
||||
- support BUILD_TEMPLATE, BUILD_INTERPOLATION, LOAD_SMALL_INT, LOAD_FAST_BORROW
|
||||
and LOAD_FAST_BORROW_LOAD_FAST_BORROW
|
||||
- LOAD_COMMON_CONSTANT, LOAD_SPECIAL whose argument is described using dedicated
|
||||
enums CommonConstant, SpecialMethod
|
||||
- CONVERT_VALUE (FORMAT_VALUE in Python < 3.13) now use the FormatValue enum.
|
||||
When disassembling the enum is always used, when creating bytecode from
|
||||
scratch integer values are coerced into the right enum member.
|
||||
* properly set the next_block attribute of the new block created by
|
||||
ControlFlowGraph.split_block. PR #170
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 6 10:22:56 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 0.16.2
|
||||
* fix ControlFlowGraph dead block detection by accounting for
|
||||
fall-through edges. PR #161
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 3 13:33:39 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||
|
||||
- Update to 0.16.1
|
||||
* Minor fixes following linter recommendations by @MatthieuDartiailh in #154
|
||||
* build(deps): bump codecov/codecov-action from 4 to 5 by @dependabot in #153
|
||||
* Fix flag inference by @MatthieuDartiailh in #157
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 1 08:33:19 UTC 2024 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 0.16.0:
|
||||
* Fix the document for python3.12 by @colinxu2020 in #142
|
||||
* fix: handle small try blocks by @P403n1x87 in #145
|
||||
* Add support for Python 3.13 by @MatthieuDartiailh in #146
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 14 15:03:42 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-bytecode
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -18,11 +18,10 @@
|
||||
|
||||
%{?sle15_python_module_pythons}
|
||||
Name: python-bytecode
|
||||
Version: 0.15.1
|
||||
Version: 0.17.0
|
||||
Release: 0
|
||||
Summary: Python module to generate and modify bytecode
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/vstinner/bytecode
|
||||
Source: https://files.pythonhosted.org/packages/source/b/bytecode/bytecode-%{version}.tar.gz
|
||||
BuildRequires: %{python_module base >= 3.8}
|
||||
|
||||
Reference in New Issue
Block a user