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
49d709c9
Kaydet (Commit)
49d709c9
authored
Ock 03, 2010
tarafından
Gregory P. Smith
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix testSourceAddress to not test the host, it wasn't passing on some platforms.
üst
3b18ff7e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
9 deletions
+4
-9
test_socket.py
Lib/test/test_socket.py
+4
-9
No files found.
Lib/test/test_socket.py
Dosyayı görüntüle @
49d709c9
...
@@ -1010,18 +1010,13 @@ class NetworkConnectionAttributesTest(SocketTCPTest, ThreadableTest):
...
@@ -1010,18 +1010,13 @@ class NetworkConnectionAttributesTest(SocketTCPTest, ThreadableTest):
self
.
cli
=
socket
.
create_connection
((
HOST
,
self
.
port
),
timeout
=
30
)
self
.
cli
=
socket
.
create_connection
((
HOST
,
self
.
port
),
timeout
=
30
)
self
.
assertEqual
(
self
.
cli
.
family
,
2
)
self
.
assertEqual
(
self
.
cli
.
family
,
2
)
testSource
Port
=
_justAccept
testSource
Address
=
_justAccept
def
_testSource
Port
(
self
):
def
_testSource
Address
(
self
):
self
.
cli
=
socket
.
create_connection
((
HOST
,
self
.
port
),
timeout
=
30
,
self
.
cli
=
socket
.
create_connection
((
HOST
,
self
.
port
),
timeout
=
30
,
source_address
=
(
''
,
self
.
source_port
))
source_address
=
(
''
,
self
.
source_port
))
self
.
assertEqual
(
self
.
cli
.
getsockname
()[
1
],
self
.
source_port
)
self
.
assertEqual
(
self
.
cli
.
getsockname
()[
1
],
self
.
source_port
)
# The port number being used is sufficient to show that the bind()
testSourceAddress
=
_justAccept
# call happened.
def
_testSourceAddress
(
self
):
self
.
cli
=
socket
.
create_connection
(
(
HOST
,
self
.
port
),
30
,
(
'127.0.0.1'
,
self
.
source_port
))
self
.
assertEqual
(
self
.
cli
.
getsockname
(),
(
'127.0.0.1'
,
self
.
source_port
))
testTimeoutDefault
=
_justAccept
testTimeoutDefault
=
_justAccept
def
_testTimeoutDefault
(
self
):
def
_testTimeoutDefault
(
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