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
c4b570f2
Kaydet (Commit)
c4b570f2
authored
Haz 01, 2003
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use fast_next_opcode shortcut for forward jump opcodes (it's safe and
gives a small speedup).
üst
5ddef75f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
ceval.c
Python/ceval.c
+5
-5
No files found.
Python/ceval.c
Dosyayı görüntüle @
c4b570f2
...
...
@@ -2001,18 +2001,18 @@ eval_frame(PyFrameObject *f)
case
JUMP_FORWARD
:
JUMPBY
(
oparg
);
continu
e
;
goto
fast_next_opcod
e
;
PREDICTED_WITH_ARG
(
JUMP_IF_FALSE
);
case
JUMP_IF_FALSE
:
w
=
TOP
();
if
(
w
==
Py_True
)
{
PREDICT
(
POP_TOP
);
continu
e
;
goto
fast_next_opcod
e
;
}
if
(
w
==
Py_False
)
{
JUMPBY
(
oparg
);
continu
e
;
goto
fast_next_opcod
e
;
}
err
=
PyObject_IsTrue
(
w
);
if
(
err
>
0
)
...
...
@@ -2028,11 +2028,11 @@ eval_frame(PyFrameObject *f)
w
=
TOP
();
if
(
w
==
Py_False
)
{
PREDICT
(
POP_TOP
);
continu
e
;
goto
fast_next_opcod
e
;
}
if
(
w
==
Py_True
)
{
JUMPBY
(
oparg
);
continu
e
;
goto
fast_next_opcod
e
;
}
err
=
PyObject_IsTrue
(
w
);
if
(
err
>
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