Ben Beasley
Ben Beasley
Fixes a test failure when the [Fedora Linux package](https://src.fedoraproject.org/rpms/python-pyxdf) is built and tested on `s390x`, which is Fedora’s sole big-endian primary architecture: ``` =================================== FAILURES =================================== __________________ test_load_file[example-files/minimal.xdf] ___________________ file...
`_PyLong_Format` is in Python’s [internal, private API](https://devguide.python.org/developer-workflow/c-api/); [`PyNumber_ToBase`](https://docs.python.org/3/c-api/number.html#c.PyNumber_ToBase) belongs to the Stable API, and is a fairly thin wrapper around `_PyLong_Format` with a bit of extra error checking. Fixes #116.
Python 3.13: AttributeError: module 'eventlet.green.thread' has no attribute 'start_joinable_thread'
On Python 3.13, there are several errors in test collection due to `AttributeError: module 'eventlet.green.thread' has no attribute 'start_joinable_thread'`. To reproduce: ``` $ gh repo clone eventlet/eventlet $ python3.13 -V...
I see a few test regressions that appear to be associated with the update from Pillow 10.3.0 to 10.4.0: ``` $ gh repo clone mikedh/trimesh $ cd trimesh $ python3.12...
### Description The C extension for SQLAlchemy 1.4 uses `_PyArg_NoKeywords()`, an undocumented private API that [was moved to the `pycore_modsupport.h` internal C API in Python 3.13](https://github.com/python/cpython/issues/110964). As a result, the...
The `frame.f_locals` is now a write-through proxy object of type `FrameLocalsProxy`; see PEP 667. This fix is based on https://github.com/zopefoundation/zope.interface/pull/294 and specifically on https://github.com/zopefoundation/zope.interface/pull/294#issuecomment-2109776671. Fixes #91.
### What I did: 1. Check out current `main`, 966cce897c0a25485918f945eb83968d04933b2d 2. Run `tox -e py313` ### What I expect to happen: All tests pass, as they do for `tox -e...
Please consider porting to the latest PyO3, currently 0.22, which has full support for Python 3.13. https://pyo3.rs/v0.22.0/migration#from-020-to-021 https://pyo3.rs/v0.22.0/migration#from-021-to-022
The only other project I’m aware of that builds a `dav` command is https://github.com/atsb/dav-text, but in general—and as was [mentioned in a review for a `python-webdav4` package in Fedora](https://bugzilla.redhat.com/show_bug.cgi?id=2296300#c4)—using very...
## Summary While the contents of `ecosystem/` are “merely” `pyproject.toml` files and one trivial Python script, they are still covered by the licenses of the projects from which they are...