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
840ac926
Kaydet (Commit)
840ac926
authored
Mar 31, 2009
tarafından
R. David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Windows test skip error revealed by buildbot. Also a comment spelling
correction in a previously fixed test.
üst
a08867d8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
10 deletions
+5
-10
test_sqlite.py
Lib/test/test_sqlite.py
+1
-1
test_wait4.py
Lib/test/test_wait4.py
+4
-9
No files found.
Lib/test/test_sqlite.py
Dosyayı görüntüle @
840ac926
import
unittest
from
test.test_support
import
run_unittest
,
import_module
#
Skip test of _sqlite3 module not installed
#
Skip test if _sqlite3 module was not built.
import_module
(
'_sqlite3'
)
from
sqlite3.test
import
(
dbapi
,
types
,
userfunctions
,
py25tests
,
...
...
Lib/test/test_wait4.py
Dosyayı görüntüle @
840ac926
...
...
@@ -4,17 +4,12 @@
import
os
import
time
from
test.fork_wait
import
ForkWait
from
test.test_support
import
run_unittest
,
reap_children
from
test.test_support
import
run_unittest
,
reap_children
,
get_attribute
try
:
os
.
fork
except
AttributeError
:
raise
unittest
.
SkipTest
,
"os.fork not defined -- skipping test_wait4"
# If either of these do not exist, skip this test.
get_attribute
(
os
,
'fork'
)
get_attribute
(
os
,
'wait4'
)
try
:
os
.
wait4
except
AttributeError
:
raise
unittest
.
SkipTest
,
"os.wait4 not defined -- skipping test_wait4"
class
Wait4Test
(
ForkWait
):
def
wait_impl
(
self
,
cpid
):
...
...
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