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
ae406c60
Kaydet (Commit)
ae406c60
authored
Eyl 19, 2007
tarafından
Thomas Wouters
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Whitespace cleanup.
üst
b3e6e8c8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ceval.c
Python/ceval.c
+3
-3
No files found.
Python/ceval.c
Dosyayı görüntüle @
ae406c60
...
@@ -2602,7 +2602,7 @@ fast_yield:
...
@@ -2602,7 +2602,7 @@ fast_yield:
}
}
/* pop frame */
/* pop frame */
exit_eval_frame:
exit_eval_frame:
Py_LeaveRecursiveCall
();
Py_LeaveRecursiveCall
();
tstate
->
frame
=
f
->
f_back
;
tstate
->
frame
=
f
->
f_back
;
...
@@ -2839,7 +2839,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
...
@@ -2839,7 +2839,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
retval
=
PyEval_EvalFrameEx
(
f
,
0
);
retval
=
PyEval_EvalFrameEx
(
f
,
0
);
fail:
/* Jump here from prelude on failure */
fail:
/* Jump here from prelude on failure */
/* decref'ing the frame can cause __del__ methods to get invoked,
/* decref'ing the frame can cause __del__ methods to get invoked,
which can call back into Python. While we're done with the
which can call back into Python. While we're done with the
...
@@ -3861,7 +3861,7 @@ ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
...
@@ -3861,7 +3861,7 @@ ext_do_call(PyObject *func, PyObject ***pp_stack, int flags, int na, int nk)
PCALL
(
PCALL_OTHER
);
PCALL
(
PCALL_OTHER
);
#endif
#endif
result
=
PyObject_Call
(
func
,
callargs
,
kwdict
);
result
=
PyObject_Call
(
func
,
callargs
,
kwdict
);
ext_call_fail:
ext_call_fail:
Py_XDECREF
(
callargs
);
Py_XDECREF
(
callargs
);
Py_XDECREF
(
kwdict
);
Py_XDECREF
(
kwdict
);
Py_XDECREF
(
stararg
);
Py_XDECREF
(
stararg
);
...
...
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