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
mattip
Merge branch 'main' into py3.11
mattip
handle single base class in PyType_FromModuleAndSpec (issue 5267)
Michał Górny
[_cffi_ssl] Remove duplicate `get_socket_or_None()` call in `shutdown()`
Remove the initial `self.get_socket_or_None()` call
in `_SSLSocket.shutdown()`, since it is effectively duplicate
to the inline `if self.socket is not None` block below.  However,
the latter block has more functionality, since it needs to distinguish
`self.socket()` returning `None` from `self.socket` being `None`.

Fixes #5261
mattip
fix macos sysconfig LD* values (issue pypa/distutils:283)
Michał Górny
[_cffi_ssl] Add missing LIB_ERR_SYS handling
Add missing handlers for `LIB_ERR_SYS` in `pyssl_error()`.  This was
added to CPython in python/cpython@f4b31edf2d9d72878dab1f66a36913b5bcc848ec,
and seems to be required for OpenSSL 3.4+.

Adding this handler fixes flaky test failures reported
in python-trio/trio#3253.
mattip
add python3.8+ versions of Py_TRASHCAN macros (issue 3958)
Matti Picus
Merge pull request #5263 from mgorny/err-sys
[_cffi_ssl] Add missing LIB_ERR_SYS handling
mattip
return bytes for emptystring in re.findall() (issue 5265)
Matti Picus
Merge pull request #5269 from TheShermanTanker/branches/llvm-translation-backend
Use wWinMain to remove the need for command line argument processing
Matti Picus
Merge pull request #5254 from stefanor/arm-old-plats
Get 32-bit ARM translating on old platforms again
Stefano Rivera
Define _FILE_OFFSET_BITS and _LARGEFILE_SOURCE on 32-bit ARM (on older platforms)
Fixes: #5229
mattip
Merge branch 'py3.10' into py3.11
Matti Picus
Merge pull request #5262 from mgorny/ssl-cleanup
Remove some duplicate code from `_cffi_ssl` module
TheShermanTanker
Forgot about the LPWSTR
mattip
Merge branch 'main' into py3.11
CF Bolz-Tereick
fix ruleopt test
Michał Górny
[_cffi_ssl] Remove duplicate `errcode` var in `pyssl_error()`
Remove the duplicate `errcode` variable that is set through
`lib.ERR_peek_last_error()`, the same as the `e` variable below.
Replace the former with the latter, since the latter is used in more
instances (and also the former is easier to grep).
TheShermanTanker
Use wWinMain to remove the need for command line argument processing