8000 gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 by iritkatriel · Pull Request #111368 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 #111368

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
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
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
regen-all
  • Loading branch information
iritkatriel committed Oct 26, 2023
commit 59b3ccecfe8e07c46ad105dfdb9d1cd0ed79958b
5 changes: 0 additions & 5 deletions Include/internal/pycore_global_objects_fini_generated.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions Include/internal/pycore_global_strings.h
Original file line number Diff line number Diff line change
Expand Up @@ -276,10 +276,8 @@ struct _Py_global_strings {
STRUCT_FOR_ID(after_in_child)
STRUCT_FOR_ID(after_in_parent)
STRUCT_FOR_ID(aggregate_class)
STRUCT_FOR_ID(alias)
STRUCT_FOR_ID(append)
STRUCT_FOR_ID(argdefs)
STRUCT_FOR_ID(args)
STRUCT_FOR_ID(arguments)
STRUCT_FOR_ID(argv)
STRUCT_FOR_ID(as_integer_ratio)
Expand Down Expand Up @@ -402,8 +400,6 @@ struct _Py_global_strings {
STRUCT_FOR_ID(errors)
STRUCT_FOR_ID(event)
STRUCT_FOR_ID(eventmask)
STRUCT_FOR_ID(exc_type)
STRUCT_FOR_ID(exc_value)
STRUCT_FOR_ID(excepthook)
STRUCT_FOR_ID(exception)
STRUCT_FOR_ID(existing_file_name)
Expand Down Expand Up @@ -718,7 +714,6 @@ struct _Py_global_strings {
STRUCT_FOR_ID(timetuple)
STRUCT_FOR_ID(top)
STRUCT_FOR_ID(trace_callback)
STRUCT_FOR_ID(traceback)
STRUCT_FOR_ID(trailers)
STRUCT_FOR_ID(translate)
STRUCT_FOR_ID(true)
Expand Down
5 changes: 0 additions & 5 deletions Include/internal/pycore_runtime_init_generated.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 0 additions & 15 deletions Include/internal/pycore_unicodeobject_generated.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0