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
daeffd2c
Kaydet (Commit)
daeffd2c
authored
Ock 03, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
audioop: adpcm2lin() and lin2adpcm() now raises a TypeError instead of a
SystemError if the state type is invalid.
üst
6f055e73
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
test_audioop.py
Lib/test/test_audioop.py
+5
-0
audioop.c
Modules/audioop.c
+6
-0
No files found.
Lib/test/test_audioop.py
Dosyayı görüntüle @
daeffd2c
...
...
@@ -269,6 +269,11 @@ class TestAudioop(unittest.TestCase):
self
.
assertEqual
(
audioop
.
lin2adpcm
(
b
'
\0
'
*
w
*
10
,
w
,
None
),
(
b
'
\0
'
*
5
,
(
0
,
0
)))
def
test_invalid_adpcm_state
(
self
):
# state must be a tuple or None, not an integer
self
.
assertRaises
(
TypeError
,
audioop
.
adpcm2lin
,
b
'
\0
'
,
1
,
555
)
self
.
assertRaises
(
TypeError
,
audioop
.
lin2adpcm
,
b
'
\0
'
,
1
,
555
)
def
test_lin2alaw
(
self
):
self
.
assertEqual
(
audioop
.
lin2alaw
(
datas
[
1
],
1
),
b
'
\xd5\x87\xa4\x24\xaa\x2a\x5a
'
)
...
...
Modules/audioop.c
Dosyayı görüntüle @
daeffd2c
...
...
@@ -1525,6 +1525,9 @@ audioop_lin2adpcm(PyObject *self, PyObject *args)
/* First time, it seems. Set defaults */
valpred
=
0
;
index
=
0
;
}
else
if
(
!
PyTuple_Check
(
state
))
{
PyErr_SetString
(
PyExc_TypeError
,
"state must be a tuple or None"
);
goto
exit
;
}
else
if
(
!
PyArg_ParseTuple
(
state
,
"ii"
,
&
valpred
,
&
index
))
goto
exit
;
...
...
@@ -1631,6 +1634,9 @@ audioop_adpcm2lin(PyObject *self, PyObject *args)
/* First time, it seems. Set defaults */
valpred
=
0
;
index
=
0
;
}
else
if
(
!
PyTuple_Check
(
state
))
{
PyErr_SetString
(
PyExc_TypeError
,
"state must be a tuple or None"
);
goto
exit
;
}
else
if
(
!
PyArg_ParseTuple
(
state
,
"ii"
,
&
valpred
,
&
index
))
goto
exit
;
...
...
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