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
0f150e41
Kaydet (Commit)
0f150e41
authored
Ara 10, 1996
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added test_new.
üst
a6b7c714
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
testall.out
Lib/test/testall.out
+1
-0
testall.py
Lib/test/testall.py
+6
-2
No files found.
Lib/test/testall.out
Dosyayı görüntüle @
0f150e41
...
...
@@ -180,4 +180,5 @@ test_cmath
test_crypt
Test encryption: abeTm2pJKypwA
test_dbm
test_new
Passed all tests.
Lib/test/testall.py
Dosyayı görüntüle @
0f150e41
...
...
@@ -3,6 +3,7 @@
# It is a good idea to do this whenever you build a new interpreter.
# Remember to add new tests when new features are added!
import
sys
from
test_support
import
*
print
'test_grammar'
...
...
@@ -12,10 +13,13 @@ import test_grammar
for
t
in
[
'test_opcodes'
,
'test_operations'
,
'test_builtin'
,
'test_exceptions'
,
'test_types'
,
'test_math'
,
'test_time'
,
'test_array'
,
'test_strop'
,
'test_md5'
,
'test_cmath'
,
'test_crypt'
,
'test_dbm'
,
'test_crypt'
,
'test_dbm'
,
'test_new'
,
]:
print
t
unload
(
t
)
__import__
(
t
,
globals
(),
locals
())
try
:
__import__
(
t
,
globals
(),
locals
())
except
ImportError
,
msg
:
sys
.
stderr
.
write
(
'
%
s. Uninstalled optional module?
\n
'
%
msg
)
print
'Passed all tests.'
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