Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clarify the dead batteries workaround for Python >= 3.13
``` try: import aifc import audioop except ModuleNotFoundError as e: raise ModuleNotFoundError("Please run: pip install audioop-lts standard-aifc") from e ``` https://docs.python.org/3.13/whatsnew/3.13.html#whatsnew313-pep594
- Loading branch information