hallo,
 
supose i´ve opened a sound with the wave module:
 
>>> import wave
>>> sound=wave.open(filename,'rb')
 
now this is strange:
 
>>> sound.getnframes() != len(sound.readframes(sound.getnframes())
True
 
 Why so?
 
thanks in advance,
Claire