Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

gh-87729: improve hit rate of LOAD_SUPER_ATTR specialization #104270

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

Merged
merged 4 commits into from
May 11, 2023
Merged
Changes from 1 commit
Commits
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
Merge branch 'main' into fixloadsuperspec
* main:
  GH-102181: Improve specialization stats for SEND (GH-102182)
  gh-103000: Optimise `dataclasses.asdict` for the common case (#104364)
  gh-103538: Remove unused TK_AQUA code (GH-103539)
  GH-87695: Fix OSError from `pathlib.Path.glob()` (GH-104292)
  gh-104263: Rely on Py_NAN and introduce Py_INFINITY (GH-104202)
  gh-104010: Separate and improve docs for `typing.get_origin` and `typing.get_args` (#104013)
  gh-101819: Adapt _io._BufferedIOBase_Type methods to Argument Clinic (#104355)
  gh-103960: Dark mode: invert image brightness (#103983)
  gh-104252: Immortalize Py_EMPTY_KEYS (gh-104253)
  gh-101819: Clean up _io windows console io after gh-104197 (#104354)
  gh-101819: Harden _io init (#104352)
  gh-103247: clear the module cache in a test in test_importlib/extensions/test_loader.py (GH-104226)
  gh-103848: Adds checks to ensure that bracketed hosts found by urlsplit are of IPv6 or IPvFuture format (#103849)
  gh-74895: adjust tests to work on Solaris (#104326)
  gh-101819: Refactor _io in preparation for module isolation (#104334)
  gh-90953: Don't use deprecated AST nodes in clinic.py (#104322)
  gh-102327: Extend docs for "url" and "headers" parameters to HTTPConnection.request()
  gh-104328: Fix typo in ``typing.Generic`` multiple inheritance error message (#104335)
  • Loading branch information
carljm committed May 10, 2023
commit 5976df922bb352f2de093dc18e8e90e9f9529746
2 changes: 2 additions & 0 deletions 2 Tools/scripts/summarize_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,8 @@ def kind_to_text(kind, defines, opname):
opname = "SUPER"
elif opname.endswith("ATTR"):
opname = "ATTR"
elif opname in ("FOR_ITER", "SEND"):
opname = "ITER"
elif opname.endswith("SUBSCR"):
opname = "SUBSCR"
for name in defines[kind]:
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.