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
179111bd
Kaydet (Commit)
179111bd
authored
Eki 25, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge heads
üst
c8bc3d1c
74c17539
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
NEWS
Misc/NEWS
+3
-0
_asynciomodule.c
Modules/_asynciomodule.c
+4
-6
No files found.
Misc/NEWS
Dosyayı görüntüle @
179111bd
...
...
@@ -29,6 +29,9 @@ Core and Builtins
Library
-------
- Issue #28430: Fix iterator of C implemented asyncio.Future doesn't accept
non-None value is passed to it.send(val).
- Issue #27025: Generated names for Tkinter widgets now start by the "!" prefix
for readability (was "`").
...
...
Modules/_asynciomodule.c
Dosyayı görüntüle @
179111bd
...
...
@@ -815,13 +815,11 @@ FutureIter_iternext(futureiterobject *it)
}
static
PyObject
*
FutureIter_send
(
futureiterobject
*
self
,
PyObject
*
arg
)
FutureIter_send
(
futureiterobject
*
self
,
PyObject
*
unused
)
{
if
(
arg
!=
Py_None
)
{
PyErr_Format
(
PyExc_TypeError
,
"can't send non-None value to a FutureIter"
);
return
NULL
;
}
/* Future.__iter__ doesn't care about values that are pushed to the
* generator, it just returns "self.result().
*/
return
FutureIter_iternext
(
self
);
}
...
...
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