python-bidi
python-bidi copied to clipboard
BIDI algorithm related functions
to replicate: ``` from bidi.algorithm import get_display string= "01\xad2345" bidi_string = get_display(string) assert string.find("\xad") != -1 assert bidi_string.find("\xad") == -1 ```
Bumps [wheel](https://github.com/pypa/wheel) from 0.23.0 to 0.38.1. Changelog Sourced from wheel's changelog. Release Notes UNRELEASED Updated vendored packaging to 22.0 0.38.4 (2022-11-09) Fixed PKG-INFO conversion in bdist_wheel mangling UTF-8 header values...
In the latest realeses of python-bidi this is the error I faced. It happened when I run it on android. I am using the latest version of python-bidi
It would fix #28.
With the release of Python 3.14, the new free-threaded (no-GIL) mode is becoming more widely used. It would be great if python-bidi could provide prebuilt wheels and confirm compatibility with...
Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.27.1 to 0.27.2. Release notes Sourced from pyo3's releases. PyO3 0.27.2 This patch contains very minor fixes for the PyO3 0.27 series: Workaround a rustc 1.92+ crash...
In commit 076d457 python3.14 builds were added to CI for most platforms, however it appears that `linux` was accidentally missed. Note: This was presenting to me as a failure to...