[issue16685] audioop functions shouldn't accept strings

2014-03-09 Thread Roundup Robot
Roundup Robot added the comment: New changeset c375697f062e by R David Murray in branch 'default': whatsnew: auidioop.byteswap (#16685). http://hg.python.org/cpython/rev/c375697f062e -- ___ Python tracker _

[issue16685] audioop functions shouldn't accept strings

2013-11-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset b96f4ee1b08b by Serhiy Storchaka in branch 'default': Issue #16685: Added support for writing any bytes-like objects in the aifc, http://hg.python.org/cpython/rev/b96f4ee1b08b -- ___ Python tracker

[issue16685] audioop functions shouldn't accept strings

2013-11-11 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed. Thank you Jason. -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mail

[issue16685] audioop functions shouldn't accept strings

2013-11-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 35cd00465624 by Serhiy Storchaka in branch 'default': Fixed compile error on Windows caused by arithmetic with void * pointers http://hg.python.org/cpython/rev/35cd00465624 -- ___ Python tracker

[issue16685] audioop functions shouldn't accept strings

2013-11-10 Thread Jason R. Coombs
Jason R. Coombs added the comment: The patch as committed causes the Windows 64-bit builds to fail to compile. http://buildbot.python.org/all/builders/AMD64%20Windows7%20SP1%203.x/builds/3187/steps/compile/logs/stdio -- nosy: +jason.coombs status: closed -> open ___

[issue16685] audioop functions shouldn't accept strings

2013-11-10 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue16685] audioop functions shouldn't accept strings

2013-11-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset bab0cbf86835 by Serhiy Storchaka in branch 'default': Issue #16685: Added support for any bytes-like objects in the audioop module. http://hg.python.org/cpython/rev/bab0cbf86835 -- nosy: +python-dev ___ P

[issue16685] audioop functions shouldn't accept strings

2013-11-09 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If there are no objections I will commit last patch tomorrow. -- ___ Python tracker ___ ___ Python

[issue16685] audioop functions shouldn't accept strings

2013-10-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : Added file: http://bugs.python.org/file32276/audioop_buffer_2.patch ___ Python tracker ___ ___ Python-bugs-list

[issue16685] audioop functions shouldn't accept strings

2013-10-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Well. In updated patch I use gotos where it decreases the number of lines (total decreasing is almost 30 lines). -- ___ Python tracker ___ __

[issue16685] audioop functions shouldn't accept strings

2013-10-20 Thread STINNER Victor
STINNER Victor added the comment: audioop_buffer.patch: In general, I don't like goto in C. But to cleanup something when exiting a function, I like goto to implement something similar to Python try/finally. What do you think Serhiy? -- ___ Python t

[issue16685] audioop functions shouldn't accept strings

2013-10-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch. Now audioop functions no more accept str, but accept bytes-like objects instead. -- keywords: +patch stage: needs patch -> patch review title: Deprecate accepting strings as arguments in audioop functions -> audioop functions shouldn