[issue16682] Document that audioop works with bytes, not strings

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: commit review -> committed/rejected status: open -> closed ___ Python tracker ___ __

[issue16682] Document that audioop works with bytes, not strings

2012-12-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset cd2b4074a2d9 by Serhiy Storchaka in branch '3.2': Issue #16682: Replace "Python string" to "bytes object" in audioop documentation. http://hg.python.org/cpython/rev/cd2b4074a2d9 New changeset e8248e597060 by Serhiy Storchaka in branch '3.3': Issue

[issue16682] Document that audioop works with bytes, not strings

2012-12-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: docs@python -> serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list mailing list Un

[issue16682] Document that audioop works with bytes, not strings

2012-12-21 Thread Terry J. Reedy
Terry J. Reedy added the comment: Patch looks good to me, all three occurrences of 'string' are fixed. -- nosy: +terry.reedy stage: patch review -> commit review ___ Python tracker _

[issue16682] Document that audioop works with bytes, not strings

2012-12-14 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- keywords: +patch Added file: http://bugs.python.org/file28312/audioop_docs_bytes.patch ___ Python tracker ___ ___

[issue16682] Document that audioop works with bytes, not strings

2012-12-14 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: The audioop module documentation says that functions works with Python strings. This was right in 2.x, but in 3.x here should be bytes objects (actually the functions accept strings too, but this is an implementation detail, meaningless in general). -