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
d739bda6
Kaydet (Commit)
d739bda6
authored
May 29, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #18084: Use sys.byteorder in wave.py.
Original patch by Hideaki Takahashi.
üst
2e537f9e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
8 deletions
+4
-8
wave.py
Lib/wave.py
+3
-8
ACKS
Misc/ACKS
+1
-0
No files found.
Lib/wave.py
Dosyayı görüntüle @
d739bda6
...
...
@@ -82,13 +82,8 @@ WAVE_FORMAT_PCM = 0x0001
_array_fmts
=
None
,
'b'
,
'h'
,
None
,
'l'
# Determine endian-ness
import
struct
if
struct
.
pack
(
"h"
,
1
)
==
b
"
\000\001
"
:
big_endian
=
1
else
:
big_endian
=
0
import
sys
from
chunk
import
Chunk
from
collections
import
namedtuple
...
...
@@ -235,7 +230,7 @@ class Wave_read:
self
.
_data_seek_needed
=
0
if
nframes
==
0
:
return
b
''
if
self
.
_sampwidth
>
1
and
big_endian
:
if
self
.
_sampwidth
>
1
and
sys
.
byteorder
==
'big'
:
# unfortunately the fromfile() method does not take
# something that only looks like a file object, so
# we have to reach into the innards of the chunk object
...
...
@@ -422,7 +417,7 @@ class Wave_write:
nframes
=
len
(
data
)
//
(
self
.
_sampwidth
*
self
.
_nchannels
)
if
self
.
_convert
:
data
=
self
.
_convert
(
data
)
if
self
.
_sampwidth
>
1
and
big_endian
:
if
self
.
_sampwidth
>
1
and
sys
.
byteorder
==
'big'
:
import
array
data
=
array
.
array
(
_array_fmts
[
self
.
_sampwidth
],
data
)
data
.
byteswap
()
...
...
Misc/ACKS
Dosyayı görüntüle @
d739bda6
...
...
@@ -1222,6 +1222,7 @@ Thenault Sylvain
Péter Szabó
Amir Szekely
Arfrever Frehtes Taifersar Arahesis
Hideaki Takahashi
Neil Tallim
Geoff Talvola
Musashi Tamura
...
...
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