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
66078ac5
Kaydet (Commit)
66078ac5
authored
Eki 26, 2016
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25002: Back out asyncore/asynchat deprecation.
üst
3dca6244
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
9 deletions
+0
-9
asynchat.py
Lib/asynchat.py
+0
-5
asyncore.py
Lib/asyncore.py
+0
-4
No files found.
Lib/asynchat.py
Dosyayı görüntüle @
66078ac5
...
...
@@ -46,13 +46,8 @@ method) up to the terminator, and then control will be returned to
you - by calling your self.found_terminator() method.
"""
import
asyncore
import
warnings
from
collections
import
deque
warnings
.
warn
(
'asynchat module is deprecated in 3.6. Use asyncio instead.'
,
PendingDeprecationWarning
,
stacklevel
=
2
)
class
async_chat
(
asyncore
.
dispatcher
):
"""This is an abstract class. You must derive from this class, and add
...
...
Lib/asyncore.py
Dosyayı görüntüle @
66078ac5
...
...
@@ -60,10 +60,6 @@ from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \
_DISCONNECTED
=
frozenset
({
ECONNRESET
,
ENOTCONN
,
ESHUTDOWN
,
ECONNABORTED
,
EPIPE
,
EBADF
})
warnings
.
warn
(
'asyncore module is deprecated in 3.6. Use asyncio instead.'
,
PendingDeprecationWarning
,
stacklevel
=
2
)
try
:
socket_map
except
NameError
:
...
...
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