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
963c80fd
Kaydet (Commit)
963c80fd
authored
Mar 03, 2008
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add a note in the main test class' docstring that the order of execution of the
tests is important.
üst
bfbf5b37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
test_pep247.py
Lib/test/test_pep247.py
+9
-2
No files found.
Lib/test/test_pep247.py
Dosyayı görüntüle @
963c80fd
...
...
@@ -10,6 +10,8 @@ warnings.filterwarnings("ignore", "the sha module is deprecated.*",
DeprecationWarning
)
import
md5
,
sha
,
hmac
from
test.test_support
import
verbose
def
check_hash_module
(
module
,
key
=
None
):
assert
hasattr
(
module
,
'digest_size'
),
"Must have digest_size"
...
...
@@ -47,10 +49,15 @@ def check_hash_module(module, key=None):
hd2
+=
"
%02
x"
%
ord
(
byte
)
assert
hd2
==
hexdigest
,
"hexdigest doesn't appear correct"
print
'Module'
,
module
.
__name__
,
'seems to comply with PEP 247'
if
verbose
:
print
'Module'
,
module
.
__name__
,
'seems to comply with PEP 247'
if
__name__
==
'__main__'
:
def
test_main
()
:
check_hash_module
(
md5
)
check_hash_module
(
sha
)
check_hash_module
(
hmac
,
key
=
'abc'
)
if
__name__
==
'__main__'
:
test_main
()
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