MCPcopy Index your code
hub / github.com/python/cpython / getparams

Method getparams

Lib/wave.py:357–360  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

355 return self._compname
356
357 def getparams(self):
358 return _wave_params(self.getnchannels(), self.getsampwidth(),
359 self.getframerate(), self.getnframes(),
360 self.getcomptype(), self.getcompname())
361
362 def setpos(self, pos):
363 if pos < 0 or pos > self._nframes:

Calls 6

getnchannelsMethod · 0.95
getsampwidthMethod · 0.95
getframerateMethod · 0.95
getnframesMethod · 0.95
getcomptypeMethod · 0.95
getcompnameMethod · 0.95