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
76fc8c70
Kaydet (Commit)
76fc8c70
authored
Agu 23, 2010
tarafından
Giampaolo Rodolà
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix issue 658749: correctly interprets asyncore's windows errors on connect()
üst
05380645
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
asyncore.py
Lib/asyncore.py
+3
-3
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/asyncore.py
Dosyayı görüntüle @
76fc8c70
...
...
@@ -53,7 +53,7 @@ import time
import
warnings
import
os
from
errno
import
EALREADY
,
EINPROGRESS
,
EWOULDBLOCK
,
ECONNRESET
,
\
from
errno
import
EALREADY
,
EINPROGRESS
,
EWOULDBLOCK
,
ECONNRESET
,
EINVAL
,
\
ENOTCONN
,
ESHUTDOWN
,
EINTR
,
EISCONN
,
EBADF
,
ECONNABORTED
,
errorcode
try
:
...
...
@@ -337,8 +337,8 @@ class dispatcher:
def
connect
(
self
,
address
):
self
.
connected
=
False
err
=
self
.
socket
.
connect_ex
(
address
)
# XXX Should interpret Winsock return values
if
err
in
(
EINPROGRESS
,
EALREADY
,
EWOULDBLOCK
):
if
err
in
(
EINPROGRESS
,
EALREADY
,
EWOULDBLOCK
)
\
or
err
==
EINVAL
and
os
.
name
in
(
'nt'
,
'ce'
):
return
if
err
in
(
0
,
EISCONN
):
self
.
addr
=
address
...
...
Misc/NEWS
Dosyayı görüntüle @
76fc8c70
...
...
@@ -123,6 +123,9 @@ Extensions
Library
-------
- Issue #658749: asyncore's connect() method now correctly interprets winsock
errors;
- Issue #9501: Fixed logging regressions in cleanup code.
- Fix functools.total_ordering() to actually work.
...
...
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