17
0

Accepting request 1303448 from home:glaubitz:branches:devel:languages:python

- 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

OBS-URL: https://build.opensuse.org/request/show/1303448
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bytecode?expand=0&rev=27
This commit is contained in:
2025-09-10 09:11:29 +00:00
committed by Git OBS Bridge
parent 8df91c397f
commit ad63782048
4 changed files with 24 additions and 4 deletions

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
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>