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
6fea7f7f
Kaydet (Commit)
6fea7f7f
authored
Agu 22, 2016
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #27809: Cleanup _PyEval_EvalCodeWithName()
* Rename nm to name * PEP 7: add { ... } to if/else blocks
üst
b9009391
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
15 deletions
+13
-15
ceval.c
Python/ceval.c
+13
-15
No files found.
Python/ceval.c
Dosyayı görüntüle @
6fea7f7f
...
...
@@ -3878,28 +3878,28 @@ _PyEval_EvalCodeWithName(PyObject *_co, PyObject *globals, PyObject *locals,
normally interned this should almost always hit. */
co_varnames
=
((
PyTupleObject
*
)(
co
->
co_varnames
))
->
ob_item
;
for
(
j
=
0
;
j
<
total_args
;
j
++
)
{
PyObject
*
n
m
=
co_varnames
[
j
];
if
(
n
m
==
keyword
)
PyObject
*
n
ame
=
co_varnames
[
j
];
if
(
n
ame
==
keyword
)
{
goto
kw_found
;
}
}
/* Slow fallback, just in case */
for
(
j
=
0
;
j
<
total_args
;
j
++
)
{
PyObject
*
nm
=
co_varnames
[
j
];
int
cmp
=
PyObject_RichCompareBool
(
keyword
,
nm
,
Py_EQ
);
if
(
cmp
>
0
)
PyObject
*
name
=
co_varnames
[
j
];
int
cmp
=
PyObject_RichCompareBool
(
keyword
,
name
,
Py_EQ
);
if
(
cmp
>
0
)
{
goto
kw_found
;
else
if
(
cmp
<
0
)
}
else
if
(
cmp
<
0
)
{
goto
fail
;
}
}
if
(
j
>=
total_args
&&
kwdict
==
NULL
)
{
PyErr_Format
(
PyExc_TypeError
,
"%U() got an unexpected "
"keyword argument '%S'"
,
co
->
co_name
,
keyword
);
"%U() got an unexpected keyword argument '%S'"
,
co
->
co_name
,
keyword
);
goto
fail
;
}
...
...
@@ -3911,10 +3911,8 @@ _PyEval_EvalCodeWithName(PyObject *_co, PyObject *globals, PyObject *locals,
kw_found:
if
(
GETLOCAL
(
j
)
!=
NULL
)
{
PyErr_Format
(
PyExc_TypeError
,
"%U() got multiple "
"values for argument '%S'"
,
co
->
co_name
,
keyword
);
"%U() got multiple values for argument '%S'"
,
co
->
co_name
,
keyword
);
goto
fail
;
}
Py_INCREF
(
value
);
...
...
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