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
41525e31
Kaydet (Commit)
41525e31
authored
Nis 03, 2015
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #23466: Raised OverflowError if %c argument is out of range.
üst
45ec3288
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
9 deletions
+14
-9
test_format.py
Lib/test/test_format.py
+6
-6
bytesobject.c
Objects/bytesobject.c
+8
-3
No files found.
Lib/test/test_format.py
Dosyayı görüntüle @
41525e31
...
...
@@ -358,12 +358,12 @@ class FormatTest(unittest.TestCase):
"not all arguments converted during bytes formatting"
)
test_exc
(
b
'no format'
,
bytearray
(
b
'1'
),
TypeError
,
"not all arguments converted during bytes formatting"
)
test_exc
(
b
"
%
c"
,
-
1
,
Type
Error
,
"
%
c
requires an integer in range(256) or a single byte
"
)
test_exc
(
b
"
%
c"
,
256
,
Type
Error
,
"
%
c
requires an integer in range(256) or a single byte
"
)
test_exc
(
b
"
%
c"
,
2
**
128
,
Type
Error
,
"
%
c
requires an integer in range(256) or a single byte
"
)
test_exc
(
b
"
%
c"
,
-
1
,
Overflow
Error
,
"
%
c
arg not in range(256)
"
)
test_exc
(
b
"
%
c"
,
256
,
Overflow
Error
,
"
%
c
arg not in range(256)
"
)
test_exc
(
b
"
%
c"
,
2
**
128
,
Overflow
Error
,
"
%
c
arg not in range(256)
"
)
test_exc
(
b
"
%
c"
,
b
"Za"
,
TypeError
,
"
%
c requires an integer in range(256) or a single byte"
)
test_exc
(
b
"
%
c"
,
"Y"
,
TypeError
,
...
...
Objects/bytesobject.c
Dosyayı görüntüle @
41525e31
...
...
@@ -496,10 +496,15 @@ byte_converter(PyObject *arg, char *p)
ival
=
PyLong_AsLongAndOverflow
(
iobj
,
&
overflow
);
Py_DECREF
(
iobj
);
}
if
(
!
overflow
&&
0
<=
ival
&&
ival
<=
255
)
{
*
p
=
(
char
)
ival
;
return
1
;
if
(
!
overflow
&&
ival
==
-
1
&&
PyErr_Occurred
())
goto
onError
;
if
(
overflow
||
!
(
0
<=
ival
&&
ival
<=
255
))
{
PyErr_SetString
(
PyExc_OverflowError
,
"%c arg not in range(256)"
);
return
0
;
}
*
p
=
(
char
)
ival
;
return
1
;
}
onError
:
PyErr_SetString
(
PyExc_TypeError
,
...
...
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