This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: wave.open does not accept PathLike objects
Type: enhancement Stage: patch review
Components: Library (Lib) Versions: Python 3.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: berker.peksag, mscuthbert, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2017-09-10 18:41 by mscuthbert, last changed 2022-04-11 14:58 by admin.

Pull Requests
URL Status Linked Edit
PR 3484 open mscuthbert, 2017-09-10 19:38
Messages (2)
msg301826 - (view) Author: Michael Cuthbert (mscuthbert) * Date: 2017-09-10 18:41
The wave library (reading and writing .wav audio files) accepts filehandles, strings, and bytes, but does not accept PathLike objects.  Patch will modify wave.py to allow open to use these objects.
msg305361 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2017-11-01 09:01
wave is a one of three audio file modules (aifc, sunau, wave) that should have the same interface.
History
Date User Action Args
2022-04-11 14:58:52adminsetgithub: 75593
2017-11-01 09:01:18serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg305361
2017-11-01 08:14:56berker.peksagsetnosy: + berker.peksag
2017-09-10 19:38:36mscuthbertsetkeywords: + patch
stage: patch review
pull_requests: + pull_request3474
2017-09-10 18:41:22mscuthbertsettype: enhancement
components: + Library (Lib)
2017-09-10 18:41:03mscuthbertcreate