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
ab9a446f
Kaydet (Commit)
ab9a446f
authored
Tem 25, 2014
tarafından
Charles-François Natali
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #19875: Fix random test_getsockaddrarg() failure.
üst
f7152db9
e396c363
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
test_socket.py
Lib/test/test_socket.py
+16
-8
No files found.
Lib/test/test_socket.py
Dosyayı görüntüle @
ab9a446f
...
...
@@ -3,6 +3,7 @@ from test import support
import
errno
import
io
import
itertools
import
socket
import
select
import
tempfile
...
...
@@ -1147,17 +1148,24 @@ class GeneralModuleTests(unittest.TestCase):
sock
.
close
()
def
test_getsockaddrarg
(
self
):
host
=
'0.0.0.0'
sock
=
socket
.
socket
()
self
.
addCleanup
(
sock
.
close
)
port
=
support
.
find_unused_port
()
big_port
=
port
+
65536
neg_port
=
port
-
65536
sock
=
socket
.
socket
()
try
:
self
.
assertRaises
(
OverflowError
,
sock
.
bind
,
(
host
,
big_port
))
self
.
assertRaises
(
OverflowError
,
sock
.
bind
,
(
host
,
neg_port
))
sock
.
bind
((
host
,
port
))
finally
:
sock
.
close
()
self
.
assertRaises
(
OverflowError
,
sock
.
bind
,
(
HOST
,
big_port
))
self
.
assertRaises
(
OverflowError
,
sock
.
bind
,
(
HOST
,
neg_port
))
# Since find_unused_port() is inherently subject to race conditions, we
# call it a couple times if necessary.
for
i
in
itertools
.
count
():
port
=
support
.
find_unused_port
()
try
:
sock
.
bind
((
HOST
,
port
))
except
OSError
as
e
:
if
e
.
errno
!=
errno
.
EADDRINUSE
or
i
==
5
:
raise
else
:
break
@unittest.skipUnless
(
os
.
name
==
"nt"
,
"Windows specific"
)
def
test_sock_ioctl
(
self
):
...
...
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