summaryrefslogtreecommitdiffstats
path: root/Doc/library/dis.rst
Commit message (Expand)AuthorAgeFilesLines
* 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
* gh-105678: document SET_FUNCTION_ATTRIBUTE (#105843)Carl Meyer2023-06-161-9/+20
* bpo-44530: Document the change in MAKE_FUNCTION behavior (#93189)Alex Doe2023-06-161-2/+5
* GH-77273: Better bytecodes for f-strings (GH-6132)Mark Shannon2023-06-141-16/+37
* gh-102676: Add more convenience properties to `dis.Instruction` (#103969)Tomas R2023-06-111-0/+42
* gh-103921: Document PEP 695 (#104642)Jelle Zijlstra2023-05-261-20/+91
* docs: fix wrong indentation causing rendering error in dis page (#104661)Nyakku Shigure2023-05-191-2/+2
* gh-97933: (PEP 709) inline list/dict/set comprehensions (#101441)Carl Meyer2023-05-091-0/+8
* GH-97950: Use new-style index directive ('builtin') (#104164)Adam Turner2023-05-061-1/+1
* Various small fixes to dis docs (#103923)Jelle Zijlstra2023-04-291-78/+79
* gh-87729: add LOAD_SUPER_ATTR instruction for faster super() (#103497)Carl Meyer2023-04-241-0/+18
* GH-88691: Shrink the CALL caches (GH-103230)Brandt Bucher2023-04-051-1/+1
* GH-100982: Break up COMPARE_AND_BRANCH (GH-102801)Brandt Bucher2023-03-231-9/+0
* gh-102859: Remove JUMP_IF_FALSE_OR_POP and JUMP_IF_TRUE_OR_POP (#102870)Irit Katriel2023-03-221-24/+0
* GH-90997: Shrink the LOAD_GLOBAL caches (#102569)Brandt Bucher2023-03-111-3/+3
* gh-101799: implement PREP_RERAISE_STAR as an intrinsic function (#101800)Irit Katriel2023-02-141-11/+15
* gh-101632: Add the new RETURN_CONST opcode (#101633)penguin_wwy2023-02-071-0/+7
* gh-101454: fix documentation for END_ASYNC_FOR (#101455)Irit Katriel2023-02-011-4/+3
* GH-100762: Don't call `gen.throw()` in `gen.close()`, unless necessary. (GH-1...Mark Shannon2023-01-241-1/+4
* GH-100982: Add `COMPARE_AND_BRANCH` instruction (GH-100983)Mark Shannon2023-01-161-0/+9
* gh-96461: Improve docs for bytecode instructions (GH-96462)Matthieu Dartiailh2023-01-121-123/+236
* GH-99005: More intrinsics (GH-100774)Mark Shannon2023-01-061-19/+3
* GH-99005: Add `CALL_INTRINSIC_1` instruction (GH-100771)Mark Shannon2023-01-051-23/+16
* GH-96793: Implement PEP 479 in bytecode. (GH-99006)Mark Shannon2022-11-031-0/+9
* GH-96793: Change `FOR_ITER` to not pop the iterator on exhaustion. (GH-96801)Mark Shannon2022-10-271-1/+12
* gh-97937: dis docs: add adaptive=False (#97939)Jelle Zijlstra2022-10-251-13/+29
* gh-71316: Update dis documentation to include changes to jump arguments (GH-9...Christopher Chianelli2022-10-071-0/+4
* Docs: Fix backtick errors found by sphinx-lint (#97998)Hugo van Kemenade2022-10-071-1/+1
* gh-93554: Conditional jump opcodes only jump forward (GH-96318)Irit Katriel2022-09-011-36/+20
* GH-90997: Wrap yield from/await in a virtual try/except StopIteration (GH-96010)Brandt Bucher2022-08-191-3/+18
* GH-90997: Document CACHEs (GH-95694)Brandt Bucher2022-08-051-0/+18
* no-issue: Fix typo of "thrid" instead of "third" in dis docs (gh-95510)Alex Hedges2022-08-011-1/+1
* Remove out of date reference to YIELD_FROM from docs. (#94966)Mark Shannon2022-07-181-6/+0
* gh-94216: add pseudo instructions to the dis/opcodes modules (GH-94241)Irit Katriel2022-07-011-2/+80
* gh-89038: [doc] update dis.findlinestarts documentation for changes related t...Irit Katriel2022-06-301-4/+6
* GH-94163: Add BINARY_SLICE and STORE_SLICE instructions. (GH-94168)Mark Shannon2022-06-271-5/+21