-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust for removal of typing.ByteString in Python 3.14
`typing.ByteString` has been removed: https://docs.python.org/3.14/whatsnew/3.14.html The modernizing guide suggests `collections.abc.ByteString` which has also been removed; the recommendation is to use either: - just `bytes` - `collections.abc.Buffer` - a union of `bytes`, `bytesarray`, etc. https://typing.readthedocs.io/en/latest/guides/modernizing.html#modernizing-byte-string Per discussion, using `bytes` should suffice Signed-off-by: Michel Lind <salimma@fedoraproject.org>
- Loading branch information
1 parent
7fda79d
commit d8342a4
Showing
2 changed files
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters