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
00425105
Kaydet (Commit)
00425105
authored
Mar 12, 2017
tarafından
Oren Milman
Kaydeden (comit)
Serhiy Storchaka
Mar 12, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-29730: replace some calls to PyNumber_Check and improve some error messages (#650)
üst
b7c9150b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
39 additions
and
25 deletions
+39
-25
_iomodule.c
Modules/_io/_iomodule.c
+4
-3
bytesio.c
Modules/_io/bytesio.c
+7
-1
stringio.c
Modules/_io/stringio.c
+5
-3
mmapmodule.c
Modules/mmapmodule.c
+4
-3
bytes_methods.c
Objects/bytes_methods.c
+19
-15
No files found.
Modules/_io/_iomodule.c
Dosyayı görüntüle @
00425105
...
...
@@ -549,14 +549,15 @@ _PyIO_ConvertSsize_t(PyObject *obj, void *result) {
if
(
obj
==
Py_None
)
{
limit
=
-
1
;
}
else
if
(
Py
Number
_Check
(
obj
))
{
else
if
(
Py
Index
_Check
(
obj
))
{
limit
=
PyNumber_AsSsize_t
(
obj
,
PyExc_OverflowError
);
if
(
limit
==
-
1
&&
PyErr_Occurred
())
if
(
limit
==
-
1
&&
PyErr_Occurred
())
{
return
0
;
}
}
else
{
PyErr_Format
(
PyExc_TypeError
,
"
integer argument expected, g
ot '%.200s'"
,
"
argument should be integer or None, n
ot '%.200s'"
,
Py_TYPE
(
obj
)
->
tp_name
);
return
0
;
}
...
...
Modules/_io/bytesio.c
Dosyayı görüntüle @
00425105
...
...
@@ -578,12 +578,18 @@ _io_BytesIO_truncate_impl(bytesio *self, PyObject *arg)
/* Truncate to current position if no argument is passed. */
size
=
self
->
pos
;
}
else
{
else
if
(
PyIndex_Check
(
arg
))
{
size
=
PyNumber_AsSsize_t
(
arg
,
PyExc_OverflowError
);
if
(
size
==
-
1
&&
PyErr_Occurred
())
{
return
NULL
;
}
}
else
{
PyErr_Format
(
PyExc_TypeError
,
"argument should be integer or None, not '%.200s'"
,
Py_TYPE
(
arg
)
->
tp_name
);
return
NULL
;
}
if
(
size
<
0
)
{
PyErr_Format
(
PyExc_ValueError
,
...
...
Modules/_io/stringio.c
Dosyayı görüntüle @
00425105
...
...
@@ -458,17 +458,19 @@ _io_StringIO_truncate_impl(stringio *self, PyObject *arg)
CHECK_INITIALIZED
(
self
);
CHECK_CLOSED
(
self
);
if
(
Py
Number
_Check
(
arg
))
{
if
(
Py
Index
_Check
(
arg
))
{
size
=
PyNumber_AsSsize_t
(
arg
,
PyExc_OverflowError
);
if
(
size
==
-
1
&&
PyErr_Occurred
())
if
(
size
==
-
1
&&
PyErr_Occurred
())
{
return
NULL
;
}
}
else
if
(
arg
==
Py_None
)
{
/* Truncate to current position if no argument is passed. */
size
=
self
->
pos
;
}
else
{
PyErr_Format
(
PyExc_TypeError
,
"integer argument expected, got '%s'"
,
PyErr_Format
(
PyExc_TypeError
,
"argument should be integer or None, not '%.200s'"
,
Py_TYPE
(
arg
)
->
tp_name
);
return
NULL
;
}
...
...
Modules/mmapmodule.c
Dosyayı görüntüle @
00425105
...
...
@@ -247,14 +247,15 @@ mmap_convert_ssize_t(PyObject *obj, void *result) {
if
(
obj
==
Py_None
)
{
limit
=
-
1
;
}
else
if
(
Py
Number
_Check
(
obj
))
{
else
if
(
Py
Index
_Check
(
obj
))
{
limit
=
PyNumber_AsSsize_t
(
obj
,
PyExc_OverflowError
);
if
(
limit
==
-
1
&&
PyErr_Occurred
())
if
(
limit
==
-
1
&&
PyErr_Occurred
())
{
return
0
;
}
}
else
{
PyErr_Format
(
PyExc_TypeError
,
"
integer argument expected, g
ot '%.200s'"
,
"
argument should be integer or None, n
ot '%.200s'"
,
Py_TYPE
(
obj
)
->
tp_name
);
return
0
;
}
...
...
Objects/bytes_methods.c
Dosyayı görüntüle @
00425105
...
...
@@ -399,12 +399,15 @@ _Py_bytes_maketrans(Py_buffer *frm, Py_buffer *to)
#include "stringlib/find.h"
/*
Wraps stringlib_parse_args_finds() and additionally checks
whether the
first argument is an integer in range(0, 256)
.
Wraps stringlib_parse_args_finds() and additionally checks
the first
argument type
.
If this is the case, writes the integer value to the byte parameter
and sets subobj to NULL. Otherwise, sets the first argument to subobj
and doesn't touch byte. The other parameters are similar to those of
In case the first argument is a bytes-like object, sets it to subobj,
and doesn't touch the byte parameter.
In case it is an integer in range(0, 256), writes the integer value
to byte, and sets subobj to NULL.
The other parameters are similar to those of
stringlib_parse_args_finds().
*/
...
...
@@ -415,27 +418,28 @@ parse_args_finds_byte(const char *function_name, PyObject *args,
{
PyObject
*
tmp_subobj
;
Py_ssize_t
ival
;
PyObject
*
err
;
if
(
!
stringlib_parse_args_finds
(
function_name
,
args
,
&
tmp_subobj
,
start
,
end
))
return
0
;
if
(
!
PyNumber_Check
(
tmp_subobj
))
{
if
(
PyObject_CheckBuffer
(
tmp_subobj
))
{
*
subobj
=
tmp_subobj
;
return
1
;
}
ival
=
PyNumber_AsSsize_t
(
tmp_subobj
,
PyExc_OverflowError
);
if
(
ival
==
-
1
)
{
err
=
PyErr_Occurred
();
if
(
err
&&
!
PyErr_GivenExceptionMatches
(
err
,
PyExc_OverflowError
))
{
PyErr_Clear
();
*
subobj
=
tmp_subobj
;
return
1
;
}
if
(
!
PyIndex_Check
(
tmp_subobj
))
{
PyErr_Format
(
PyExc_TypeError
,
"argument should be integer or bytes-like object, "
"not '%.200s'"
,
Py_TYPE
(
tmp_subobj
)
->
tp_name
);
return
0
;
}
ival
=
PyNumber_AsSsize_t
(
tmp_subobj
,
NULL
);
if
(
ival
==
-
1
&&
PyErr_Occurred
())
{
return
0
;
}
if
(
ival
<
0
||
ival
>
255
)
{
PyErr_SetString
(
PyExc_ValueError
,
"byte must be in range(0, 256)"
);
return
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