File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1+ 6.1.1 2024-07-21
2+ =================
3+
4+ * Greatly improve extended-format output. (More could be done though)
5+ * Update Python versions recognize, e.g. 3.12.4
6+ * Add nullaryloadop for nullary load opcodes
7+ * More code linting and type annotation
8+
9+
1106.1.0 2024-03-15
211=================
312
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ That's what this package is for. It can "marshal load" Python
1919bytecodes from different versions of Python. The command-line routine
2020*pydisasm * will show disassembly output using the most modern Python
2121disassembly conventions in a variety of user-specified formats. Some
22- of these formats like `extended ` and `extended-format ` are the most
22+ of these formats like `` extended `` and `` extended-format ` ` are the most
2323advanced of any Python disassembler I know of because they can show
2424expression-tree on operators. See the [Disassembler
2525Example][#disassembler-example] below.
@@ -38,7 +38,7 @@ magic value.
3838
3939So if you want to write a cross-version assembler, bytecode-level
4040analyzer, or optimizer this package may also be useful. In addition to
41- the kinds of instruction categorization that ``dis` `` offers, we have
41+ the kinds of instruction categorization that ``dis `` offers, we have
4242additional categories for things that would be useful in such a
4343bytecode assembler, optimizer, or decompiler.
4444
Original file line number Diff line number Diff line change 44# well as importing into Python. That's why there is no
55# space around "=" below.
66# fmt: off
7- __version__ = "6.1.1.dev0 " # noqa
7+ __version__ = "6.1.1" # noqa
You can’t perform that action at this time.
0 commit comments