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
32c6cdf7
Kaydet (Commit)
32c6cdf7
authored
Ara 10, 1991
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added STORE_GLOBAL and DELETE_GLOBAL.
Exceptions may now also be tuples.
üst
50afb7a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
4 deletions
+24
-4
ceval.c
Python/ceval.c
+24
-4
No files found.
Python/ceval.c
Dosyayı görüntüle @
32c6cdf7
...
...
@@ -523,6 +523,12 @@ eval_code(co, globals, locals, arg)
case
RAISE_EXCEPTION
:
v
=
POP
();
w
=
POP
();
/* A tuple is equivalent to its first element here */
while
(
is_tupleobject
(
w
))
{
u
=
w
;
w
=
gettupleitem
(
u
,
0
);
DECREF
(
u
);
}
if
(
!
is_stringobject
(
w
))
err_setstr
(
TypeError
,
"exceptions must be strings"
);
...
...
@@ -630,7 +636,7 @@ eval_code(co, globals, locals, arg)
why
=
WHY_EXCEPTION
;
}
else
if
(
gettuplesize
(
v
)
!=
oparg
)
{
err_setstr
(
Runtim
eError
,
err_setstr
(
Valu
eError
,
"unpack tuple of wrong size"
);
why
=
WHY_EXCEPTION
;
}
...
...
@@ -651,7 +657,7 @@ eval_code(co, globals, locals, arg)
why
=
WHY_EXCEPTION
;
}
else
if
(
getlistsize
(
v
)
!=
oparg
)
{
err_setstr
(
Runtim
eError
,
err_setstr
(
Valu
eError
,
"unpack list of wrong size"
);
why
=
WHY_EXCEPTION
;
}
...
...
@@ -682,6 +688,19 @@ eval_code(co, globals, locals, arg)
DECREF
(
v
);
break
;
case
STORE_GLOBAL
:
w
=
GETNAMEV
(
oparg
);
v
=
POP
();
err
=
dict2insert
(
f
->
f_globals
,
w
,
v
);
DECREF
(
v
);
break
;
case
DELETE_GLOBAL
:
w
=
GETNAMEV
(
oparg
);
if
((
err
=
dict2remove
(
f
->
f_globals
,
w
))
!=
0
)
err_setstr
(
NameError
,
getstringvalue
(
w
));
break
;
case
LOAD_CONST
:
x
=
GETCONST
(
oparg
);
INCREF
(
x
);
...
...
@@ -941,7 +960,7 @@ eval_code(co, globals, locals, arg)
Python main loop. Don't do
this for 'finally'. */
if
(
b
->
b_type
==
SETUP_EXCEPT
)
{
#if
0
/* Oops, this breaks too many things */
#if
1
/* Oops, this breaks too many things */
sysset
(
"exc_traceback"
,
v
);
#endif
sysset
(
"exc_value"
,
val
);
...
...
@@ -1539,7 +1558,8 @@ cmp_exception(err, v)
int
i
,
n
;
n
=
gettuplesize
(
v
);
for
(
i
=
0
;
i
<
n
;
i
++
)
{
if
(
err
==
gettupleitem
(
v
,
i
))
/* Test recursively */
if
(
cmp_exception
(
err
,
gettupleitem
(
v
,
i
)))
return
1
;
}
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