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
8d5934b2
Kaydet (Commit)
8d5934b2
authored
Ara 27, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#4748 lambda generators shouldn't return values
üst
c3a98034
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
1 deletion
+18
-1
test_generators.py
Lib/test/test_generators.py
+10
-0
NEWS
Misc/NEWS
+2
-0
compile.c
Python/compile.c
+6
-1
No files found.
Lib/test/test_generators.py
Dosyayı görüntüle @
8d5934b2
...
...
@@ -928,6 +928,16 @@ Test the __name__ attribute and the repr()
'f'
>>> repr(g) # doctest: +ELLIPSIS
'<generator object f at ...>'
Lambdas shouldn't have their usual return behavior.
>>> x = lambda: (yield 1)
>>> list(x())
[1]
>>> x = lambda: ((yield 1), (yield 2))
>>> list(x())
[1, 2]
"""
# conjoin is a simple backtracking generator, named in honor of Icon's
...
...
Misc/NEWS
Dosyayı görüntüle @
8d5934b2
...
...
@@ -83,6 +83,8 @@ Core and Builtins
- Issue #4509: Various issues surrounding resize of bytearray objects to
which there are buffer exports.
- Issue #4748: Lambda generators no longer return a value.
Library
-------
...
...
Python/compile.c
Dosyayı görüntüle @
8d5934b2
...
...
@@ -1534,7 +1534,12 @@ compiler_lambda(struct compiler *c, expr_ty e)
c
->
u
->
u_argcount
=
asdl_seq_LEN
(
args
->
args
);
VISIT_IN_SCOPE
(
c
,
expr
,
e
->
v
.
Lambda
.
body
);
ADDOP_IN_SCOPE
(
c
,
RETURN_VALUE
);
if
(
c
->
u
->
u_ste
->
ste_generator
)
{
ADDOP_IN_SCOPE
(
c
,
POP_TOP
);
}
else
{
ADDOP_IN_SCOPE
(
c
,
RETURN_VALUE
);
}
co
=
assemble
(
c
,
1
);
compiler_exit_scope
(
c
);
if
(
co
==
NULL
)
...
...
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