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
07627e9a
Unverified
Kaydet (Commit)
07627e9a
authored
Ock 29, 2018
tarafından
Yury Selivanov
Kaydeden (comit)
GitHub
Ock 29, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bpo-32251: Fix docs (#5408)
üst
9ee1bf9a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
asyncio-protocol.rst
Doc/library/asyncio-protocol.rst
+3
-2
protocols.py
Lib/asyncio/protocols.py
+1
-1
No files found.
Doc/library/asyncio-protocol.rst
Dosyayı görüntüle @
07627e9a
...
...
@@ -451,7 +451,7 @@ Streaming protocols with manual receive buffer control
.. versionadded:: 3.7
**Important:** :class:`BufferedProtocol` has been been added to
asyncio in Python 3.7 *on a provisional basis*!
Treat
it as an
asyncio in Python 3.7 *on a provisional basis*!
Consider
it as an
experimental API that might be changed or removed in Python 3.8.
...
...
@@ -487,7 +487,8 @@ instances:
:meth:`get_buffer` can be called an arbitrary number of times during
a connection. However, :meth:`eof_received` is called at most once
and, if called, :meth:`data_received` won't be called after it.
and, if called, :meth:`get_buffer` and :meth:`buffer_updated`
won't be called after it.
State machine:
...
...
Lib/asyncio/protocols.py
Dosyayı görüntüle @
07627e9a
...
...
@@ -106,7 +106,7 @@ class BufferedProtocol(BaseProtocol):
"""Interface for stream protocol with manual buffer control.
Important: this has been been added to asyncio in Python 3.7
*on a provisional basis*!
Treat
it as an experimental API that
*on a provisional basis*!
Consider
it as an experimental API that
might be changed or removed in Python 3.8.
Event methods, such as `create_server` and `create_connection`,
...
...
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