summaryrefslogtreecommitdiffstats
path: root/Lib/test/shadowed_super.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-87729: add LOAD_SUPER_ATTR instruction for faster super() (#103497)Carl Meyer2023-04-241-0/+7
This speeds up `super()` (by around 85%, for a simple one-level `super().meth()` microbenchmark) by avoiding allocation of a new single-use `super()` object on each use.