Uniformly replaced init() functions by __init__() constructors.
A few simple things seem to work, I haven't tested it thouroughly
though...
diff --git a/Demo/sgi/video/aplay.py b/Demo/sgi/video/aplay.py
index 5544fbe..7b10027 100755
--- a/Demo/sgi/video/aplay.py
+++ b/Demo/sgi/video/aplay.py
@@ -55,7 +55,7 @@
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')