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
02252480
Kaydet (Commit)
02252480
authored
Eyl 30, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Victor Stinner's patches to check the return result of PyLong_Ssize_t
reviewed by Amaury
üst
8d77d448
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
_bytesio.c
Modules/_bytesio.c
+8
-0
_struct.c
Modules/_struct.c
+2
-0
No files found.
Modules/_bytesio.c
Dosyayı görüntüle @
02252480
...
...
@@ -221,6 +221,8 @@ bytesio_read(BytesIOObject *self, PyObject *args)
if
(
PyInt_Check
(
arg
))
{
size
=
PyInt_AsSsize_t
(
arg
);
if
(
size
==
-
1
&&
PyErr_Occurred
())
return
NULL
;
}
else
if
(
arg
==
Py_None
)
{
/* Read until EOF is reached, by default. */
...
...
@@ -288,6 +290,8 @@ bytesio_readline(BytesIOObject *self, PyObject *args)
if
(
PyInt_Check
(
arg
))
{
size
=
PyInt_AsSsize_t
(
arg
);
if
(
size
==
-
1
&&
PyErr_Occurred
())
return
NULL
;
}
else
if
(
arg
==
Py_None
)
{
/* No size limit, by default. */
...
...
@@ -332,6 +336,8 @@ bytesio_readlines(BytesIOObject *self, PyObject *args)
if
(
PyInt_Check
(
arg
))
{
maxsize
=
PyInt_AsSsize_t
(
arg
);
if
(
maxsize
==
-
1
&&
PyErr_Occurred
())
return
NULL
;
}
else
if
(
arg
==
Py_None
)
{
/* No size limit, by default. */
...
...
@@ -415,6 +421,8 @@ bytesio_truncate(BytesIOObject *self, PyObject *args)
if
(
PyInt_Check
(
arg
))
{
size
=
PyInt_AsSsize_t
(
arg
);
if
(
size
==
-
1
&&
PyErr_Occurred
())
return
NULL
;
}
else
if
(
arg
==
Py_None
)
{
/* Truncate to current position if no argument is passed. */
...
...
Modules/_struct.c
Dosyayı görüntüle @
02252480
...
...
@@ -1755,6 +1755,8 @@ s_pack_into(PyObject *self, PyObject *args)
/* Extract the offset from the first argument */
offset
=
PyInt_AsSsize_t
(
PyTuple_GET_ITEM
(
args
,
1
));
if
(
offset
==
-
1
&&
PyErr_Occurred
())
return
NULL
;
/* Support negative offsets. */
if
(
offset
<
0
)
...
...
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