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
d00df3cf
Kaydet (Commit)
d00df3cf
authored
Haz 18, 2008
tarafından
Jesse Noller
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Merge r64375 to py3k
üst
66bada56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
test_multiprocessing.py
Lib/test/test_multiprocessing.py
+6
-3
No files found.
Lib/test/test_multiprocessing.py
Dosyayı görüntüle @
d00df3cf
...
@@ -1755,9 +1755,12 @@ globals().update(testcases_threads)
...
@@ -1755,9 +1755,12 @@ globals().update(testcases_threads)
#
#
def
test_main
(
run
=
None
):
def
test_main
(
run
=
None
):
if
sys
.
platform
.
startswith
(
"linux"
)
and
not
os
.
path
.
exists
(
"/dev/shm"
):
if
sys
.
platform
.
startswith
(
"linux"
):
from
test.test_support
import
TestSkipped
try
:
raise
TestSkipped
(
"Missing required /dev/shm device on Linux!"
)
lock
=
multiprocessing
.
RLock
()
except
OSError
:
from
test.test_support
import
TestSkipped
raise
TestSkipped
(
"OSError raises on RLock creation, see issue 3111!"
)
if
run
is
None
:
if
run
is
None
:
from
test.support
import
run_unittest
as
run
from
test.support
import
run_unittest
as
run
...
...
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