Home - Speed - Summaries: (main - py2.7) : (py3.10) : (py3.11) : 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
CF Bolz-Tereick
gh-5232: fix re.fullmatch in the presence of atomic groups
CF Bolz-Tereick
Merge branch 'main' into py3.11
CF Bolz-Tereick
make int + long and int * long use rbigint.int_add and .int_mul too
this always worked on pypy2 but somehow never made it to 3
CF Bolz-Tereick
gh-5049: fix re.fullmatch in the presence of possessive repeats
mattip
typo (cfbolz)
mattip
typo
mattip
fix version of python3.10 in versions.json
Matti Picus
Merge pull request #5235 from mgorny/null-311
py3.11: raise `SyntaxError` on null bytes, to match CPython 3.11
Matti Picus
Merge pull request #5241 from mgorny/datetime-isoformat
Fix `datetime.*.fromisoformat()` to reject spaces in fraction part
Michał Górny
py3.11: raise `SyntaxError` on null bytes, to match CPython 3.11
Raise `SyntaxError` rather than `ValueError` on null bytes in source
code, to match the behavior of Python 3.11.4+.

Fixes #5234
Michał Górny
Fix `LOAD_GLOBAL` disassembly on PyPy3.11
Disable the special branch for `LOAD_GLOBAL` disassembly introduced
in CPython 3.11.  The bytecode in PyPy has not been changed, and it
causes incorrect disassembly.

Fixes #5238
Matti Picus
fix test for different exception
mattip
update release note
CF Bolz-Tereick
Merge branch 'main' into py3.11
CF Bolz-Tereick
Merge pull request #5239 from mgorny/dis-load_global
Fix `LOAD_GLOBAL` disassembly on PyPy3.11
Michał Górny
Fix `datetime.*.fromisoformat()` to reject spaces in fraction part
Fix pure Python implementation of `fromisoformat()` to reject spaces
in fractional part of time specifications.  This matches the behavior
of the C implementation in CPython, and prevents the method from parsing
them incorrectly.

This fixes Django's test suite by enabling a fallback to their own
(working) parser.

Backports: https://github.com/python/cpython/pull/130962
mattip
finalize the v7.3.19 release
mattip
tweak release notes, py3.10 is python 3.10.16 not 3.10.19
CF Bolz-Tereick
gh-5245: fix crash when the JIT copies an empty virtual dict