Re: [Python-Dev] winsound.c fix to support python3

2013-06-29 Thread Terry Reedy
On 6/29/2013 11:59 AM, Tamir Friedman wrote: Hello, My name is Tamir Friedman, and I suggest to fix a bug in PlaySound in winsound library. It's doesn't support the SND_MEMORY feature because its accepts only "str" and rejects "bytes" type. therefore i include the fixed source file: Thank you f

[Python-Dev] winsound.c fix to support python3

2013-06-29 Thread Tamir Friedman
Hello, My name is Tamir Friedman, and I suggest to fix a bug in PlaySound in winsound library. It's doesn't support the SND_MEMORY feature because its accepts only "str" and rejects "bytes" type. therefore i include the fixed source file: OLD: ---