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
6492bf71
Kaydet (Commit)
6492bf71
authored
Şub 09, 2001
tarafından
Jeremy Hylton
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
SF patch 103589: Fix handling of cell vars that are either * or ** parameters.
(Nick Mathewson) Remove to XXX comments
üst
cb17ae8b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
8 deletions
+15
-8
compile.c
Python/compile.c
+15
-8
No files found.
Python/compile.c
Dosyayı görüntüle @
6492bf71
...
...
@@ -2486,10 +2486,6 @@ com_assert_stmt(struct compiling *c, node *n)
where <message> is the second test, if present.
*/
/* XXX should __debug__ and AssertionError get inserted into
the symbol table? they don't follow the normal rules
because they are always loaded as globals */
if
(
Py_OptimizeFlag
)
return
;
com_addop_name
(
c
,
LOAD_GLOBAL
,
"__debug__"
);
...
...
@@ -3524,10 +3520,6 @@ com_fplist(struct compiling *c, node *n)
}
}
/* XXX This function could probably be made simpler, because it
doesn't do anything except generate code for complex arguments.
*/
static
void
com_arglist
(
struct
compiling
*
c
,
node
*
n
)
{
...
...
@@ -3579,12 +3571,22 @@ com_arglist(struct compiling *c, node *n)
REQ
(
ch
,
STAR
);
ch
=
CHILD
(
n
,
i
+
1
);
if
(
TYPE
(
ch
)
==
NAME
)
{
PyObject
*
v
;
i
+=
3
;
v
=
PyDict_GetItemString
(
c
->
c_cellvars
,
STR
(
ch
));
if
(
v
)
{
com_addoparg
(
c
,
LOAD_FAST
,
narg
);
com_addoparg
(
c
,
STORE_DEREF
,
PyInt_AS_LONG
(
v
));
}
narg
++
;
}
}
}
/* Handle **keywords */
if
(
i
<
nch
)
{
PyObject
*
v
;
node
*
ch
;
ch
=
CHILD
(
n
,
i
);
if
(
TYPE
(
ch
)
!=
DOUBLESTAR
)
{
...
...
@@ -3596,6 +3598,11 @@ com_arglist(struct compiling *c, node *n)
else
ch
=
CHILD
(
n
,
i
+
1
);
REQ
(
ch
,
NAME
);
v
=
PyDict_GetItemString
(
c
->
c_cellvars
,
STR
(
ch
));
if
(
v
)
{
com_addoparg
(
c
,
LOAD_FAST
,
narg
);
com_addoparg
(
c
,
STORE_DEREF
,
PyInt_AS_LONG
(
v
));
}
}
if
(
complex
)
{
/* Generate code for complex arguments only after
...
...
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