mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
parent
ecfeb7f095
commit
70a6b49821
246 changed files with 926 additions and 962 deletions
|
@ -261,7 +261,7 @@ class Wave_read:
|
|||
sampwidth = struct.unpack('<h', chunk.read(2))[0]
|
||||
self._sampwidth = (sampwidth + 7) // 8
|
||||
else:
|
||||
raise Error, 'unknown format: ' + `wFormatTag`
|
||||
raise Error, 'unknown format: %r' % (wFormatTag,)
|
||||
self._framesize = self._nchannels * self._sampwidth
|
||||
self._comptype = 'NONE'
|
||||
self._compname = 'not compressed'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue