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
e076ffb0
Kaydet (Commit)
e076ffb0
authored
Mar 02, 2016
tarafından
Yury Selivanov
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
asyncio: Remove duplicate bind addresses in create_server.
Patch by Sebastien Bourdeauducq (issue #26338)
üst
f9e1f2bd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
12 deletions
+18
-12
base_events.py
Lib/asyncio/base_events.py
+5
-2
test_events.py
Lib/test/test_asyncio/test_events.py
+13
-10
No files found.
Lib/asyncio/base_events.py
Dosyayı görüntüle @
e076ffb0
...
...
@@ -880,7 +880,10 @@ class BaseEventLoop(events.AbstractEventLoop):
to host and port.
The host parameter can also be a sequence of strings and in that case
the TCP server is bound to all hosts of the sequence.
the TCP server is bound to all hosts of the sequence. If a host
appears multiple times (possibly indirectly e.g. when hostnames
resolve to the same IP address), the server is only bound once to that
host.
Return a Server object which can be used to stop the service.
...
...
@@ -909,7 +912,7 @@ class BaseEventLoop(events.AbstractEventLoop):
flags
=
flags
)
for
host
in
hosts
]
infos
=
yield
from
tasks
.
gather
(
*
fs
,
loop
=
self
)
infos
=
itertools
.
chain
.
from_iterable
(
infos
)
infos
=
set
(
itertools
.
chain
.
from_iterable
(
infos
)
)
completed
=
False
try
:
...
...
Lib/test/test_asyncio/test_events.py
Dosyayı görüntüle @
e076ffb0
...
...
@@ -749,34 +749,37 @@ class EventLoopTestsMixin:
@asyncio.coroutine
def
getaddrinfo
(
host
,
port
,
*
args
,
**
kw
):
if
family
==
socket
.
AF_INET
:
return
[
[
family
,
socket
.
SOCK_STREAM
,
6
,
''
,
(
host
,
port
)]
]
return
[
(
family
,
socket
.
SOCK_STREAM
,
6
,
''
,
(
host
,
port
))
]
else
:
return
[
[
family
,
socket
.
SOCK_STREAM
,
6
,
''
,
(
host
,
port
,
0
,
0
)]
]
return
[
(
family
,
socket
.
SOCK_STREAM
,
6
,
''
,
(
host
,
port
,
0
,
0
))
]
def
getaddrinfo_task
(
*
args
,
**
kwds
):
return
asyncio
.
Task
(
getaddrinfo
(
*
args
,
**
kwds
),
loop
=
self
.
loop
)
unique_hosts
=
set
(
hosts
)
if
family
==
socket
.
AF_INET
:
mock_sock
.
socket
()
.
getsockbyname
.
side_effect
=
[
(
host
,
80
)
for
host
in
hosts
]
mock_sock
.
socket
()
.
getsockbyname
.
side_effect
=
[
(
host
,
80
)
for
host
in
unique_
hosts
]
else
:
mock_sock
.
socket
()
.
getsockbyname
.
side_effect
=
[
(
host
,
80
,
0
,
0
)
for
host
in
hosts
]
mock_sock
.
socket
()
.
getsockbyname
.
side_effect
=
[
(
host
,
80
,
0
,
0
)
for
host
in
unique_
hosts
]
self
.
loop
.
getaddrinfo
=
getaddrinfo_task
self
.
loop
.
_start_serving
=
mock
.
Mock
()
self
.
loop
.
_stop_serving
=
mock
.
Mock
()
f
=
self
.
loop
.
create_server
(
lambda
:
MyProto
(
self
.
loop
),
hosts
,
80
)
server
=
self
.
loop
.
run_until_complete
(
f
)
self
.
addCleanup
(
server
.
close
)
server_hosts
=
[
sock
.
getsockbyname
()[
0
]
for
sock
in
server
.
sockets
]
self
.
assertEqual
(
server_hosts
,
hosts
)
server_hosts
=
{
sock
.
getsockbyname
()[
0
]
for
sock
in
server
.
sockets
}
self
.
assertEqual
(
server_hosts
,
unique_
hosts
)
def
test_create_server_multiple_hosts_ipv4
(
self
):
self
.
create_server_multiple_hosts
(
socket
.
AF_INET
,
[
'1.2.3.4'
,
'5.6.7.8'
])
[
'1.2.3.4'
,
'5.6.7.8'
,
'1.2.3.4'
])
def
test_create_server_multiple_hosts_ipv6
(
self
):
self
.
create_server_multiple_hosts
(
socket
.
AF_INET6
,
[
'::1'
,
'::2'
])
self
.
create_server_multiple_hosts
(
socket
.
AF_INET6
,
[
'::1'
,
'::2'
,
'::1'
])
def
test_create_server
(
self
):
proto
=
MyProto
(
self
.
loop
)
...
...
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