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
54f9f83e
Kaydet (Commit)
54f9f83e
authored
Nis 30, 2010
tarafından
Antoine Pitrou
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #8576: Remove use of find_unused_port() in test_smtplib and
test_multiprocessing. Patch by Paul Moore.
üst
6d5e579c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
7 deletions
+14
-7
test_multiprocessing.py
Lib/test/test_multiprocessing.py
+3
-3
test_smtplib.py
Lib/test/test_smtplib.py
+8
-4
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_multiprocessing.py
Dosyayı görüntüle @
54f9f83e
...
...
@@ -1262,9 +1262,9 @@ class _TestManagerRestart(BaseTestCase):
def
test_rapid_restart
(
self
):
authkey
=
os
.
urandom
(
32
)
port
=
test_support
.
find_unused_port
()
manager
=
QueueManager
(
address
=
(
'localhost'
,
port
),
authkey
=
authkey
,
serializer
=
SERIALIZER
)
address
=
(
'localhost'
,
0
),
authkey
=
authkey
,
serializer
=
SERIALIZER
)
addr
=
manager
.
get_server
()
.
address
manager
.
start
()
p
=
self
.
Process
(
target
=
self
.
_putter
,
args
=
(
manager
.
address
,
authkey
))
...
...
@@ -1274,7 +1274,7 @@ class _TestManagerRestart(BaseTestCase):
del
queue
manager
.
shutdown
()
manager
=
QueueManager
(
address
=
(
'localhost'
,
port
)
,
authkey
=
authkey
,
serializer
=
SERIALIZER
)
address
=
addr
,
authkey
=
authkey
,
serializer
=
SERIALIZER
)
manager
.
start
()
manager
.
shutdown
()
...
...
Lib/test/test_smtplib.py
Dosyayı görüntüle @
54f9f83e
...
...
@@ -155,8 +155,10 @@ class DebuggingServerTests(unittest.TestCase):
self
.
_threads
=
test_support
.
threading_setup
()
self
.
serv_evt
=
threading
.
Event
()
self
.
client_evt
=
threading
.
Event
()
self
.
port
=
test_support
.
find_unused_port
()
self
.
serv
=
smtpd
.
DebuggingServer
((
HOST
,
self
.
port
),
(
'nowhere'
,
-
1
))
# Pick a random unused port by passing 0 for the port number
self
.
serv
=
smtpd
.
DebuggingServer
((
HOST
,
0
),
(
'nowhere'
,
-
1
))
# Keep a note of what port was assigned
self
.
port
=
self
.
serv
.
socket
.
getsockname
()[
1
]
serv_args
=
(
self
.
serv
,
self
.
serv_evt
,
self
.
client_evt
)
self
.
thread
=
threading
.
Thread
(
target
=
debugging_server
,
args
=
serv_args
)
self
.
thread
.
start
()
...
...
@@ -392,8 +394,10 @@ class SMTPSimTests(unittest.TestCase):
self
.
_threads
=
test_support
.
threading_setup
()
self
.
serv_evt
=
threading
.
Event
()
self
.
client_evt
=
threading
.
Event
()
self
.
port
=
test_support
.
find_unused_port
()
self
.
serv
=
SimSMTPServer
((
HOST
,
self
.
port
),
(
'nowhere'
,
-
1
))
# Pick a random unused port by passing 0 for the port number
self
.
serv
=
SimSMTPServer
((
HOST
,
0
),
(
'nowhere'
,
-
1
))
# Keep a note of what port was assigned
self
.
port
=
self
.
serv
.
socket
.
getsockname
()[
1
]
serv_args
=
(
self
.
serv
,
self
.
serv_evt
,
self
.
client_evt
)
self
.
thread
=
threading
.
Thread
(
target
=
debugging_server
,
args
=
serv_args
)
self
.
thread
.
start
()
...
...
Misc/NEWS
Dosyayı görüntüle @
54f9f83e
...
...
@@ -134,6 +134,9 @@ Extension Modules
Tests
-----
- Issue #8576: Remove use of find_unused_port() in test_smtplib and
test_multiprocessing. Patch by Paul Moore.
- Issue #7449: Fix many tests to support Python compiled without thread
support. Patches written by Jerry Seutter.
...
...
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