[issue2847] Remove cl usage from aifc

2008-06-07 Thread Georg Brandl
Georg Brandl [EMAIL PROTECTED] added the comment: I found a few more bytes/str problems, committed patch in r64023. -- resolution: - accepted status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2847

[issue2847] Remove cl usage from aifc

2008-06-03 Thread Quentin Gallet-Gilles
Quentin Gallet-Gilles [EMAIL PROTECTED] added the comment: Updated the patch with the following corrections/improvements : - corrected a missed str - bytes - replace % formatting occurrences with str.format() - more PEP-8 conformance Added file: http://bugs.python.org/file10506/aifc_3.0.patch

[issue2847] Remove cl usage from aifc

2008-06-03 Thread Quentin Gallet-Gilles
Changes by Quentin Gallet-Gilles [EMAIL PROTECTED]: Removed file: http://bugs.python.org/file10499/aifc_3.0.patch ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2847 ___

[issue2847] Remove cl usage from aifc

2008-06-02 Thread Georg Brandl
Changes by Georg Brandl [EMAIL PROTECTED]: -- assignee: - georg.brandl nosy: +georg.brandl ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2847 ___ ___

[issue2847] Remove cl usage from aifc

2008-06-01 Thread Quentin Gallet-Gilles
Quentin Gallet-Gilles [EMAIL PROTECTED] added the comment: The attached patch removes all cl references from the aifc module and updates it to make it usable in 3.0. It also supports more compression types because audioop has been enhanced throughout the years (i.e. support for alaw encoding

[issue2847] Remove cl usage from aifc

2008-05-29 Thread Quentin Gallet-Gilles
Quentin Gallet-Gilles [EMAIL PROTECTED] added the comment: I'm working on this one. -- nosy: +quentin.gallet-gilles ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue2847 ___

[issue2847] Remove cl usage from aifc

2008-05-15 Thread Brett Cannon
Changes by Brett Cannon [EMAIL PROTECTED]: -- priority: critical - release blocker __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2847 __ ___ Python-bugs-list mailing

[issue2847] Remove cl usage from aifc

2008-05-13 Thread Brett Cannon
New submission from Brett Cannon [EMAIL PROTECTED]: The cl module has been removed from Python 3.0, but the aifc module still imports it in multiple locations. The module needs to be updated (with tests hopefully) so as to not use the cl module. -- components: Library (Lib) messages: