diff options
| author | Guido van Rossum <guido@python.org> | 1993-12-17 15:11:41 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1993-12-17 15:11:41 +0000 |
| commit | 21a3ff9d5d9d8cad0bc52cb603df93d38e139840 (patch) | |
| tree | 533c4f8e2a23ecaa6099c868035b1463881ff1a7 /Demo/sgi/video/aplay.py | |
| parent | 96b608cf6ddb4c7b670c15a365ed8b14accd5d37 (diff) | |
| download | cpython-git-21a3ff9d5d9d8cad0bc52cb603df93d38e139840.tar.gz | |
Uniformly replaced init() functions by __init__() constructors.
A few simple things seem to work, I haven't tested it thouroughly
though...
Diffstat (limited to 'Demo/sgi/video/aplay.py')
| -rwxr-xr-x | Demo/sgi/video/aplay.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sgi/video/aplay.py b/Demo/sgi/video/aplay.py index 5544fbe45d..7b1002722c 100755 --- a/Demo/sgi/video/aplay.py +++ b/Demo/sgi/video/aplay.py @@ -55,7 +55,7 @@ def main(): videofile = videofile + '.video' print 'Opening video input file..' - vin = VFile.VinFile().init(videofile) + vin = VFile.VinFile(videofile) print 'Opening audio input file..' ain = aifc.open(audiofile, 'r') |
