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
eecf035a
Kaydet (Commit)
eecf035a
authored
Ara 30, 1994
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Test new __import__ module, test reload of built-in module, test
has_key() on empty dictionary
üst
5505d56f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
2 deletions
+12
-2
test_b1.py
Lib/test/test_b1.py
+8
-0
test_b2.py
Lib/test/test_b2.py
+2
-2
test_types.py
Lib/test/test_types.py
+1
-0
testall.out
Lib/test/testall.out
+1
-0
No files found.
Lib/test/test_b1.py
Dosyayı görüntüle @
eecf035a
...
...
@@ -2,6 +2,14 @@
from
test_support
import
*
print
'__import__'
__import__
(
'sys'
)
__import__
(
'strop'
)
__import__
(
'string'
)
try
:
__import__
(
'spamspam'
)
except
ImportError
:
pass
else
:
raise
TestFailed
,
"__import__('spamspam') should fail"
print
'abs'
if
abs
(
0
)
<>
0
:
raise
TestFailed
,
'abs(0)'
if
abs
(
1234
)
<>
1234
:
raise
TestFailed
,
'abs(1234)'
...
...
Lib/test/test_b2.py
Dosyayı görüntüle @
eecf035a
...
...
@@ -148,8 +148,8 @@ if reduce(lambda x, y: x+y, Squares(0), 0) != 0:
print
'reload'
#import strop
#reload(strop
)
import
marshal
reload
(
marshal
)
import
string
reload
(
string
)
import
sys
...
...
Lib/test/test_types.py
Dosyayı görüntüle @
eecf035a
...
...
@@ -165,6 +165,7 @@ if a <> [2,1,0,-1,-2]: raise TestFailed, 'list sort with cmp func'
print
'6.6 Mappings == Dictionaries'
d
=
{}
if
d
.
keys
()
<>
[]:
raise
TestFailed
,
'{}.keys()'
if
d
.
has_key
(
'a'
)
<>
0
:
raise
TestFailed
,
'{}.has_key(
\'
a
\'
)'
if
len
(
d
)
<>
0
:
raise
TestFailed
,
'len({})'
d
=
{
'a'
:
1
,
'b'
:
2
}
if
len
(
d
)
<>
2
:
raise
TestFailed
,
'len(dict)'
...
...
Lib/test/testall.out
Dosyayı görüntüle @
eecf035a
...
...
@@ -54,6 +54,7 @@ XXX Not yet implemented
test_builtin
4. Built-in functions
test_b1
__import__
abs
apply
callable
...
...
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