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
934c8858
Kaydet (Commit)
934c8858
authored
Şub 20, 2014
tarafından
Victor Stinner
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
asyncio: _check_resolved_address() must also accept IPv6 without flow_info and
scope_id: (host, port).
üst
d3f8e308
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
base_events.py
Lib/asyncio/base_events.py
+1
-1
test_events.py
Lib/test/test_asyncio/test_events.py
+6
-3
No files found.
Lib/asyncio/base_events.py
Dosyayı görüntüle @
934c8858
...
...
@@ -48,7 +48,7 @@ def _check_resolved_address(sock, address):
if
family
==
socket
.
AF_INET
:
host
,
port
=
address
elif
family
==
socket
.
AF_INET6
:
host
,
port
,
flow_info
,
scope_id
=
address
host
,
port
=
address
[:
2
]
else
:
return
...
...
Lib/test/test_asyncio/test_events.py
Dosyayı görüntüle @
934c8858
...
...
@@ -1335,11 +1335,14 @@ class EventLoopTestsMixin:
'selector'
:
self
.
loop
.
_selector
.
__class__
.
__name__
})
def
test_sock_connect_address
(
self
):
famili
es
=
[(
socket
.
AF_INET
,
(
'www.python.org'
,
80
))]
address
es
=
[(
socket
.
AF_INET
,
(
'www.python.org'
,
80
))]
if
support
.
IPV6_ENABLED
:
families
.
append
((
socket
.
AF_INET6
,
(
'www.python.org'
,
80
,
0
,
0
)))
addresses
.
extend
((
(
socket
.
AF_INET6
,
(
'www.python.org'
,
80
)),
(
socket
.
AF_INET6
,
(
'www.python.org'
,
80
,
0
,
0
)),
))
for
family
,
address
in
famili
es
:
for
family
,
address
in
address
es
:
for
sock_type
in
(
socket
.
SOCK_STREAM
,
socket
.
SOCK_DGRAM
):
sock
=
socket
.
socket
(
family
,
sock_type
)
with
sock
:
...
...
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