Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
51a883bf
Kaydet (Commit)
51a883bf
authored
Tem 23, 2007
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make test_wave.py pass.
I have no illusion that this fixes all issues with this module.
üst
f761e104
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
test_wave.py
Lib/test/test_wave.py
+1
-1
wave.py
Lib/wave.py
+5
-5
No files found.
Lib/test/test_wave.py
Dosyayı görüntüle @
51a883bf
...
...
@@ -16,7 +16,7 @@ f.setnchannels(nchannels)
f
.
setsampwidth
(
sampwidth
)
f
.
setframerate
(
framerate
)
f
.
setnframes
(
nframes
)
output
=
'
\0
'
*
nframes
*
nchannels
*
sampwidth
output
=
b
'
\0
'
*
nframes
*
nchannels
*
sampwidth
f
.
writeframes
(
output
)
f
.
close
()
...
...
Lib/wave.py
Dosyayı görüntüle @
51a883bf
...
...
@@ -126,9 +126,9 @@ class Wave_read:
self
.
_convert
=
None
self
.
_soundpos
=
0
self
.
_file
=
Chunk
(
file
,
bigendian
=
0
)
if
self
.
_file
.
getname
()
!=
'RIFF'
:
if
self
.
_file
.
getname
()
!=
b
'RIFF'
:
raise
Error
,
'file does not start with RIFF id'
if
self
.
_file
.
read
(
4
)
!=
'WAVE'
:
if
self
.
_file
.
read
(
4
)
!=
b
'WAVE'
:
raise
Error
,
'not a WAVE file'
self
.
_fmt_chunk_read
=
0
self
.
_data_chunk
=
None
...
...
@@ -139,10 +139,10 @@ class Wave_read:
except
EOFError
:
break
chunkname
=
chunk
.
getname
()
if
chunkname
==
'fmt '
:
if
chunkname
==
b
'fmt '
:
self
.
_read_fmt_chunk
(
chunk
)
self
.
_fmt_chunk_read
=
1
elif
chunkname
==
'data'
:
elif
chunkname
==
b
'data'
:
if
not
self
.
_fmt_chunk_read
:
raise
Error
,
'data chunk before fmt chunk'
self
.
_data_chunk
=
chunk
...
...
@@ -230,7 +230,7 @@ class Wave_read:
self
.
_data_chunk
.
seek
(
pos
,
0
)
self
.
_data_seek_needed
=
0
if
nframes
==
0
:
return
''
return
b
''
if
self
.
_sampwidth
>
1
and
big_endian
:
# unfortunately the fromfile() method does not take
# something that only looks like a file object, so
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment