summaryrefslogtreecommitdiffstats
path: root/Doc/library/dis.rst
Commit message (Expand)AuthorAgeFilesLines
* gh-127413: allow to show specialized bytecode via `dis` CLI (#127414)Bénédikt Tran2024-12-051-1/+7
* gh-122838: Document missing opcodes (#123073)Kamil Turek2024-11-061-0/+21
* Doc: Fix typo in documentation for ``MAKE_FUNCTION`` opcode (#126396)Mikhail Efimov2024-11-041-1/+1
* gh-125875: Fix docs typo FORMAT_SPEC to FORMAT_WITH_SPEC (gh-126319)rimchoi2024-11-021-1/+1
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-291-7/+16
* Python 3.14.0a1v3.14.0a1Hugo van Kemenade2024-10-151-2/+2
* Doc: Improve description of ``GET_LEN`` opcode (#114583)Kirill Podoprigora2024-10-081-1/+2
* gh-70870: Clarify dual usage of 'free variable' (#122545)Alyssa Coghlan2024-10-081-7/+7
* gh-121277: Allow `.. versionadded:: next` in docs (GH-121278)Petr Viktorin2024-09-251-2/+2
* gh-124285: Fix bug where bool() is called multiple times for the same part of...Irit Katriel2024-09-251-0/+6
* gh-123165: update docs signature for `dis.disassemble` (#123808)Bénédikt Tran2024-09-101-1/+2
* gh-123550: Fix code snippet of `BUILD_TUPLE` in `dis` docs (#123551)jlallas3842024-09-011-1/+1
* gh-123165: make `dis` functions render positions on demand (#123168)Bénédikt Tran2024-08-211-8/+40
* fix typo in dis.rst (#121612)mathysEthical2024-08-171-1/+1
* gh-121367: [doc] BUILD_TUPLE arg can be 0 (#122663)Irit Katriel2024-08-051-4/+8
* GH-122160: Remove BUILD_CONST_KEY_MAP opcode. (GH-122164)Mark Shannon2024-07-251-9/+0
* Docs: Fix typo in description of ``INTRINSIC_ASYNC_GEN_WRAP`` (#122004)Kirill Podoprigora2024-07-191-1/+1
* GH-120507: Lower the `BEFORE_WITH` and `BEFORE_ASYNC_WITH` instructions. (#12...Mark Shannon2024-06-181-22/+11
* gh-120178: Documentation typo corrections (#120179)David Lowry-Duda2024-06-061-1/+1
* gh-114616: Improve docs regarding changes to caches representation in dis (#1...Irit Katriel2024-06-041-3/+4
* gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)Jelle Zijlstra2024-05-221-4/+5
* docs: module page titles should not start with a link to themselves (#117099)Ned Batchelder2024-05-081-2/+2
* Fix several typos in documentation (GH-118625)Xie Yanbo2024-05-071-1/+1
* gh-117339: Use NULL instead of None for LOAD_SUPER_ATTR in dis docs (GH-117343)Christopher Chianelli2024-03-281-1/+1
* docs: use consistent .append() in dis.rst (#115434)Ned Batchelder2024-02-151-4/+4
* GH-112354: `END_FOR` instruction to only pop one value. (GH-114247)Mark Shannon2024-01-241-2/+2
* Docs: Fix typo in code snippet (GH-114421)Kirill Podoprigora2024-01-221-1/+1
* Document the `co_lines` method on code objects (#113682)Alex Waygood2024-01-031-4/+5
* fix bullet-list in `LOAD_SUPER_ATTR` documentation on `dis` page (#113461)denballakh2023-12-241-3/+4
* gh-112962: in dis module, put cache information in the Instruction instead of...Irit Katriel2023-12-131-3/+15
* gh-101100: Improve documentation of code object attributes (#112781)Alex Waygood2023-12-061-9/+10
* gh-101100: Properly document frame object attributes (#112735)Alex Waygood2023-12-051-2/+2
* gh-112137: change dis output to display labels instead of offsets (#112138)Irit Katriel2023-11-221-9/+27
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-031-1/+2
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-021-2/+11
* gh-107457: update dis documentation with changes in 3.12 (#108900)Matthieu Dartiailh2023-10-171-16/+43
* gh-108826: Document `dis` module CLI and rename `_test` function to `main` (#...Radislav Chugunov2023-10-101-0/+26
* GH-105848: Replace KW_NAMES + CALL with LOAD_CONST + CALL_KW (GH-109300)Brandt Bucher2023-09-131-25/+33
* Fix variable name in dis documentation example (GH-109343)Oleksandr Kravets2023-09-131-1/+1
* gh-109319: deprecate dis.HAVE_ARGUMENT (#109320)Irit Katriel2023-09-121-0/+2
* gh-109256: allocate opcode IDs for internal opcodes in their own range (#109269)Irit Katriel2023-09-121-2/+2
* Docs: Resolve Sphinx warnings in dis.rst (#108476)Erlend E. Aasland2023-08-251-9/+11
* gh-107932: Fix dis module for bytecode that does not have an associated sourc...Corvin2023-08-251-2/+13
* GH-105848: Simplify the arrangement of CALL's stack (GH-107788)Brandt Bucher2023-08-091-1/+1
* gh-107427: Update the description of UNPACK_SEQUENCE (gh-107429)Dong-hee Na2023-07-301-2/+3
* gh-106919: Use role :c:macro: for referencing the C "constants" (GH-106920)Serhiy Storchaka2023-07-211-2/+2
* gh-105481: Generate the opcode lists in dis from data extracted from bytecode...Irit Katriel2023-07-181-7/+21
* GH-106008: Make implicit boolean conversions explicit (GH-106003)Brandt Bucher2023-06-291-1/+22
* gh-105775: Convert LOAD_CLOSURE to a pseudo-op (#106059)hms2023-06-291-12/+11
* gh-105481: remove HAS_ARG, HAS_CONST, IS_JUMP_OPCODE, IS_PSEUDO_OPCODE and re...Irit Katriel2023-06-171-0/+6