This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Aifc comptype write fix
Type: behavior Stage: resolved
Components: Library (Lib), Tests Versions: Python 3.2, Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: Oleg.Plakhotnyuk, ezio.melotti, python-dev, r.david.murray, sandro.tosi
Priority: normal Keywords: patch

Created on 2011-12-30 09:23 by Oleg.Plakhotnyuk, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
aifc_comptypes.patch Oleg.Plakhotnyuk, 2011-12-30 09:23 review
Messages (2)
msg150365 - (view) Author: Oleg Plakhotnyuk (Oleg.Plakhotnyuk) * Date: 2011-12-30 09:23
Two changes have been made to the library:
1. Lowercase compression type support have been added to the sample width validation routine during write operation. Everywhere else compression types are used in both lowercase and uppercase.
2. Redundant invalid compression type check has been removed. It cannot be executed using public module interface, therefore I think it is not necessary.
msg150433 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2012-01-01 17:06
New changeset a9cdc3ff2b8e by Sandro Tosi in branch '3.2':
Issue #13680: add lowecase compression type to write header; patch by Oleg Plakhotnyuk
http://hg.python.org/cpython/rev/a9cdc3ff2b8e
History
Date User Action Args
2022-04-11 14:57:25adminsetgithub: 57889
2012-01-01 17:07:42sandro.tosisetstatus: open -> closed
nosy: + sandro.tosi

resolution: fixed
stage: resolved
2012-01-01 17:06:04python-devsetnosy: + python-dev
messages: + msg150433
2011-12-30 09:23:34Oleg.Plakhotnyukcreate