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
ff8b494c
Kaydet (Commit)
ff8b494c
authored
Tem 26, 1995
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
changes for keyword args to built-in functions and classes
üst
ce0a6ded
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
19 deletions
+43
-19
ceval.c
Python/ceval.c
+43
-19
No files found.
Python/ceval.c
Dosyayı görüntüle @
ff8b494c
...
...
@@ -1565,21 +1565,42 @@ eval_code2(co, globals, locals,
else
{
object
*
args
=
newtupleobject
(
na
);
object
*
kwdict
=
NULL
;
if
(
args
==
NULL
)
x
=
NULL
;
else
if
(
nk
>
0
)
{
err_setstr
(
SystemError
,
"calling built-in with keywords not yet implemented"
);
if
(
args
==
NULL
)
{
x
=
NULL
;
break
;
}
else
{
while
(
--
na
>=
0
)
{
w
=
POP
();
SETTUPLEITEM
(
args
,
na
,
w
);
if
(
nk
>
0
)
{
kwdict
=
newdictobject
();
if
(
kwdict
==
NULL
)
{
x
=
NULL
;
break
;
}
x
=
call_object
(
func
,
args
);
DECREF
(
args
);
err
=
0
;
while
(
--
nk
>=
0
)
{
object
*
value
=
POP
();
object
*
key
=
POP
();
err
=
mappinginsert
(
kwdict
,
key
,
value
);
if
(
err
)
{
DECREF
(
key
);
DECREF
(
value
);
break
;
}
}
if
(
err
)
{
DECREF
(
args
);
DECREF
(
kwdict
);
break
;
}
}
while
(
--
na
>=
0
)
{
w
=
POP
();
SETTUPLEITEM
(
args
,
na
,
w
);
}
x
=
PyEval_CallObjectWithKeywords
(
func
,
args
,
kwdict
);
DECREF
(
args
);
XDECREF
(
kwdict
);
}
DECREF
(
func
);
while
(
stack_pointer
>
pfunc
)
{
...
...
@@ -2281,25 +2302,28 @@ call_builtin(func, arg, kw)
object
*
arg
;
object
*
kw
;
{
if
(
kw
!=
NULL
)
{
err_setstr
(
SystemError
,
"calling built-in with keywords not yet implemented"
);
return
NULL
;
}
if
(
is_methodobject
(
func
))
{
method
meth
=
getmethod
(
func
);
object
*
self
=
getself
(
func
);
if
(
!
getvarargs
(
func
))
{
int
flags
=
getflags
(
func
);
if
(
!
(
flags
&
METH_VARARGS
))
{
int
size
=
gettuplesize
(
arg
);
if
(
size
==
1
)
arg
=
GETTUPLEITEM
(
arg
,
0
);
else
if
(
size
==
0
)
arg
=
NULL
;
}
if
(
flags
&
METH_KEYWORDS
)
return
(
*
(
PyCFunctionWithKeywords
)
meth
)(
self
,
arg
,
kw
);
if
(
kw
!=
NULL
)
{
err_setstr
(
TypeError
,
"this function takes no keyword arguments"
);
return
NULL
;
}
return
(
*
meth
)(
self
,
arg
);
}
if
(
is_classobject
(
func
))
{
return
newinstanceobject
(
func
,
arg
);
return
newinstanceobject
(
func
,
arg
,
kw
);
}
if
(
is_instanceobject
(
func
))
{
object
*
res
,
*
call
=
getattr
(
func
,
"__call__"
);
...
...
@@ -2309,7 +2333,7 @@ call_builtin(func, arg, kw)
"no __call__ method defined"
);
return
NULL
;
}
res
=
call_object
(
call
,
arg
);
res
=
PyEval_CallObjectWithKeywords
(
call
,
arg
,
kw
);
DECREF
(
call
);
return
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