[issue31412] wave.open does not accept PathLike objects

2017-11-01 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: wave is a one of three audio file modules (aifc, sunau, wave) that should have the same interface. -- nosy: +serhiy.storchaka ___ Python tracker

[issue31412] wave.open does not accept PathLike objects

2017-11-01 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +berker.peksag ___ Python tracker ___ ___

[issue31412] wave.open does not accept PathLike objects

2017-09-10 Thread Michael Cuthbert
Changes by Michael Cuthbert : -- keywords: +patch pull_requests: +3474 stage: -> patch review ___ Python tracker ___

[issue31412] wave.open does not accept PathLike objects

2017-09-10 Thread Michael Cuthbert
Changes by Michael Cuthbert : -- components: +Library (Lib) type: -> enhancement ___ Python tracker ___

[issue31412] wave.open does not accept PathLike objects

2017-09-10 Thread Michael Cuthbert
New submission from Michael Cuthbert: 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. -- messages: 301826 nosy: mscuthbert priority: