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
e670bd4f
Kaydet (Commit)
e670bd4f
authored
Kas 24, 2007
tarafından
Amaury Forgeot d'Arc
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix #1409: cell variables were not initialized,
when the value comes from a keyword-only parameter.
üst
2af1d894
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
test_scope.py
Lib/test/test_scope.py
+11
-0
ceval.c
Python/ceval.c
+1
-1
No files found.
Lib/test/test_scope.py
Dosyayı görüntüle @
e670bd4f
...
...
@@ -166,6 +166,17 @@ class ScopeTests(unittest.TestCase):
self
.
assertEqual
(
t
.
method_and_var
(),
"method"
)
self
.
assertEqual
(
t
.
actual_global
(),
"global"
)
def
testCellIsKwonlyArg
(
self
):
# Issue 1409: Initialisation of a cell value,
# when it comes from a keyword-only parameter
def
foo
(
*
,
a
=
17
):
def
bar
():
return
a
+
5
return
bar
()
+
3
self
.
assertEqual
(
foo
(
a
=
42
),
50
)
self
.
assertEqual
(
foo
(),
25
)
def
testRecursion
(
self
):
def
f
(
x
):
...
...
Python/ceval.c
Dosyayı görüntüle @
e670bd4f
...
...
@@ -2708,7 +2708,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
Py_UNICODE
*
cellname
,
*
argname
;
PyObject
*
c
;
nargs
=
co
->
co_argcount
;
nargs
=
co
->
co_argcount
+
co
->
co_kwonlyargcount
;
if
(
co
->
co_flags
&
CO_VARARGS
)
nargs
++
;
if
(
co
->
co_flags
&
CO_VARKEYWORDS
)
...
...
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