diff options
author | Guido van Rossum <guido@python.org> | 1993-12-17 15:25:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-12-17 15:25:27 (GMT) |
commit | 7bc817d5ba917528e8bd07ec461c635291e7b06a (patch) | |
tree | d244fa2c8a15248efe095823be9f5e690a2efe38 /Lib/toaiff.py | |
parent | aa14837bd00c28997dbde4014f8c994b9482def1 (diff) | |
download | cpython-7bc817d5ba917528e8bd07ec461c635291e7b06a.zip cpython-7bc817d5ba917528e8bd07ec461c635291e7b06a.tar.gz cpython-7bc817d5ba917528e8bd07ec461c635291e7b06a.tar.bz2 |
* Mass change: get rid of all init() methods, in favor of __init__()
constructors. There is no backward compatibility. Not everything has
been tested.
* aiff.{py,doc}: deleted in favor of aifc.py (which contains its docs as
comments)
Diffstat (limited to 'Lib/toaiff.py')
-rw-r--r-- | Lib/toaiff.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/toaiff.py b/Lib/toaiff.py index d2f5cd7..0001be0 100644 --- a/Lib/toaiff.py +++ b/Lib/toaiff.py @@ -13,7 +13,7 @@ import whatsound table = {} -t = pipes.Template().init() +t = pipes.Template() t.append('sox -t au - -t aiff -r 8000 -', '--') table['au'] = t @@ -23,31 +23,31 @@ table['au'] = t # XXX files sampled at 5.5k or 7.333k; however this means that files # XXX sampled at 11k are unnecessarily expanded. # XXX Similar comments apply to some other file types. -t = pipes.Template().init() +t = pipes.Template() t.append('sox -t hcom - -t aiff -r 22050 -', '--') table['hcom'] = t -t = pipes.Template().init() +t = pipes.Template() t.append('sox -t voc - -t aiff -r 11025 -', '--') table['voc'] = t -t = pipes.Template().init() +t = pipes.Template() t.append('sox -t wav - -t aiff -', '--') table['wav'] = t -t = pipes.Template().init() +t = pipes.Template() t.append('sox -t 8svx - -t aiff -r 16000 -', '--') table['8svx'] = t -t = pipes.Template().init() +t = pipes.Template() t.append('sox -t sndt - -t aiff -r 16000 -', '--') table['sndt'] = t -t = pipes.Template().init() +t = pipes.Template() t.append('sox -t sndr - -t aiff -r 16000 -', '--') table['sndr'] = t -uncompress = pipes.Template().init() +uncompress = pipes.Template() uncompress.append('uncompress', '--') |