Home - Speed - Summaries: (main - py2.7) : (py3.11) : (py3.12) : Everything : RPython - Nightly builds - Waterfall - Builders - About

Console View


Categories: aarch64 benchmark-run linux32 linux64 macos-arm64 macos-x86_64 win64
Legend:   Passed Failed Warnings Failed Again Running Exception Offline No data

aarch64 benchmark-run linux32 linux64 macos-arm64 macos-x86_64 win64
mattip
improve debug_collect
mattip
optimize  "a in [1, 2, 3]" to use a tuple, remove old un-optimization of "u'abc'[2]"
mattip
tighten limit on optimizing constant a**b to match CPython
Matti Picus
clean up 7513073b7d PEP 688 buffer handling
mattip
expire deprecation around fsencode accepting too many types
mattip
implement RETURN_CONST
Matti Picus
disable _hpy_universal build and tests
Matti Picus
Merge pull request #5559 from jseop-lim/fix/int-base-range-check
Fix `int()` raising `TypeError` instead of `ValueError` for a bad base
mattip
disable more _hpy_universal in pypy config
Matti Picus
port more py3.11 patches and fix edge cases in __type_params__ and method discovery
mattip
Merge branch 'py3.11' into py3.12
mattip
restore more py3.11 patches
mattip
Implement PEP 688 __buffer__/__release_buffer__ for bytearray subclasses and cpyext types
mattip
fix SyntaxError for EOF
mattip
start test_dis compatibility work
mattip
missing py3.11 patches
mattip
fix translation
Matti Picus
fix tabnanny and tests
Matti Picus
fix inspect.isbuiltin/ismethodwrapper  for slot-wrapper bound methods, do not call repr() on Method.descr_method_repr (which could recurse) (issue 5503)
mattip
fix translation
mattip
fix/skip most test_peephole tests
Jeongseop Lim
check the int() base range before dispatching on the type of x
mattip
fix hpy debug-mode abort by routing call sites through debug_before_call/debug_after_call
Matti Picus
fill make_sq_set_item for either __setitem__ or __delitem__ (issue 5564)
Also add slot_mp_ass_subscript/slot_sq_ass_item for user classes, and carve out specific behaviour for c-level wrapping of _collections.deque which implements only the sequence protocol