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
c1e6d969
Kaydet (Commit)
c1e6d969
authored
Eki 05, 2001
tarafından
Tim Peters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Get rid of unique local ISSTRICTINT macro in favor of std PyInt_CheckExact.
üst
98352062
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
9 deletions
+6
-9
ceval.c
Python/ceval.c
+6
-9
No files found.
Python/ceval.c
Dosyayı görüntüle @
c1e6d969
...
...
@@ -549,9 +549,6 @@ eval_frame(PyFrameObject *f)
#define POP() BASIC_POP()
#endif
/* Strict int check macros */
#define ISSTRICTINT(v) ((v)->ob_type == &PyInt_Type)
/* Local variable macros */
#define GETLOCAL(i) (fastlocals[i])
...
...
@@ -946,7 +943,7 @@ eval_frame(PyFrameObject *f)
case
BINARY_ADD
:
w
=
POP
();
v
=
POP
();
if
(
ISSTRICTINT
(
v
)
&&
ISSTRICTINT
(
w
))
{
if
(
PyInt_CheckExact
(
v
)
&&
PyInt_CheckExact
(
w
))
{
/* INLINE: int + int */
register
long
a
,
b
,
i
;
a
=
PyInt_AS_LONG
(
v
);
...
...
@@ -969,7 +966,7 @@ eval_frame(PyFrameObject *f)
case
BINARY_SUBTRACT
:
w
=
POP
();
v
=
POP
();
if
(
ISSTRICTINT
(
v
)
&&
ISSTRICTINT
(
w
))
{
if
(
PyInt_CheckExact
(
v
)
&&
PyInt_CheckExact
(
w
))
{
/* INLINE: int - int */
register
long
a
,
b
,
i
;
a
=
PyInt_AS_LONG
(
v
);
...
...
@@ -992,7 +989,7 @@ eval_frame(PyFrameObject *f)
case
BINARY_SUBSCR
:
w
=
POP
();
v
=
POP
();
if
(
v
->
ob_type
==
&
PyList_Type
&&
ISSTRICTINT
(
w
))
{
if
(
v
->
ob_type
==
&
PyList_Type
&&
PyInt_CheckExact
(
w
))
{
/* INLINE: list[int] */
long
i
=
PyInt_AsLong
(
w
);
if
(
i
<
0
)
...
...
@@ -1129,7 +1126,7 @@ eval_frame(PyFrameObject *f)
case
INPLACE_ADD
:
w
=
POP
();
v
=
POP
();
if
(
ISSTRICTINT
(
v
)
&&
ISSTRICTINT
(
w
))
{
if
(
PyInt_CheckExact
(
v
)
&&
PyInt_CheckExact
(
w
))
{
/* INLINE: int + int */
register
long
a
,
b
,
i
;
a
=
PyInt_AS_LONG
(
v
);
...
...
@@ -1152,7 +1149,7 @@ eval_frame(PyFrameObject *f)
case
INPLACE_SUBTRACT
:
w
=
POP
();
v
=
POP
();
if
(
ISSTRICTINT
(
v
)
&&
ISSTRICTINT
(
w
))
{
if
(
PyInt_CheckExact
(
v
)
&&
PyInt_CheckExact
(
w
))
{
/* INLINE: int - int */
register
long
a
,
b
,
i
;
a
=
PyInt_AS_LONG
(
v
);
...
...
@@ -1759,7 +1756,7 @@ eval_frame(PyFrameObject *f)
case
COMPARE_OP
:
w
=
POP
();
v
=
POP
();
if
(
ISSTRICTINT
(
v
)
&&
ISSTRICTINT
(
w
))
{
if
(
PyInt_CheckExact
(
v
)
&&
PyInt_CheckExact
(
w
))
{
/* INLINE: cmp(int, int) */
register
long
a
,
b
;
register
int
res
;
...
...
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