Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
03335e6
use RESUME oparg to store exception depth info
iritkatriel Oct 26, 2023
8b4e89d
remove the arg from YIELD_VALUE
iritkatriel Oct 26, 2023
84fbfc3
add docs
iritkatriel Oct 26, 2023
3a111ab
fix test_dis
iritkatriel Oct 26, 2023
6005db5
add news
iritkatriel Oct 26, 2023
00a0cef
regen-all
iritkatriel Oct 26, 2023
50e2d25
Merge branch 'main' into gen_close
iritkatriel Oct 26, 2023
59b3cce
regen-all
iritkatriel Oct 26, 2023
dd8af2d
Merge branch 'main' into gen_close
iritkatriel Oct 27, 2023
c4b4583
Fix typos in import system docs (#111396)
jonathanberthias Oct 27, 2023
c48ec85
gh-111406: Fix broken link to bpython's site (#111407)
zmc Oct 27, 2023
64ca0a9
gh-108765: Include explicitly <unistd.h> in signalmodule.c (#111402)
vstinner Oct 27, 2023
3aeffca
gh-59013: Make line number of function breakpoint more precise (#110582)
gaogaotiantian Oct 27, 2023
2e74589
gh-110205: Fix asyncio ThreadedChildWatcher._join_threads() (#110884)
gvanrossum Oct 27, 2023
1b70f83
gh-111342: fix typo in math.sumprod (GH-111416)
skirpichev Oct 28, 2023
b632fc1
CI: Include Python version in cache.config key (#111410)
hugovk Oct 28, 2023
c483c69
gh-79033: Try to fix asyncio.Server.wait_closed() again (GH-111336)
gvanrossum Oct 28, 2023
5c9882e
GH-110109: Move tests for `pathlib.Path.walk()` into main test classe…
barneygale Oct 28, 2023
d5ec031
gh-111426: Remove `test_cmd.test_coverage` (#111427)
sobolevn Oct 28, 2023
31a9dcf
gh-66425: Remove the unreachable code to set `REMOTE_HOST` header (gh…
c-bata Oct 29, 2023
8d5134b
gh-111062: Separate macOS build into a reusable workflow (gh-111444)
dimaqq Oct 29, 2023
f2fc8ee
gh-94808: Add coverage test for number check (gh-111445)
ekohilas Oct 29, 2023
5499901
gh-111062: Build both default and free-threaded on macOS (gh-111449)
dimaqq Oct 29, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add news
  • Loading branch information
iritkatriel committed Oct 26, 2023
commit 6005db58095fca223b57d0703d381e3ba3b7560c
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Remove ``oparg`` from :opcode:`YIELD_VALUE`. Add new value for ``oparg`` of
:opcode:`RESUME` to simplify the code in generator close.