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
e4d7821e
Kaydet (Commit)
e4d7821e
authored
Ock 16, 1997
tarafından
Barry Warsaw
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
test is no longer needed
üst
52a6ea7b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
32 deletions
+0
-32
test_xdr
Lib/test/output/test_xdr
+0
-5
test_xdr.py
Lib/test/test_xdr.py
+0
-27
No files found.
Lib/test/output/test_xdr
deleted
100644 → 0
Dosyayı görüntüle @
52a6ea7b
test_xdr
_xdr.pack_float()
_xdr.unpack_float()
_xdr.pack_double()
_xdr.unpack_double()
Lib/test/test_xdr.py
deleted
100644 → 0
Dosyayı görüntüle @
52a6ea7b
from
test_support
import
verbose
import
_xdr
fd
=
8.01
print
'_xdr.pack_float()'
s
=
_xdr
.
pack_float
(
fd
)
if
verbose
:
print
`s`
print
'_xdr.unpack_float()'
f
=
_xdr
.
unpack_float
(
s
)
if
verbose
:
print
f
if
int
(
100
*
f
)
<>
int
(
100
*
fd
):
print
'pack_float() <> unpack_float()'
fd
=
9900000.9
print
'_xdr.pack_double()'
s
=
_xdr
.
pack_double
(
fd
)
if
verbose
:
print
`s`
print
'_xdr.unpack_double()'
f
=
_xdr
.
unpack_double
(
s
)
if
verbose
:
print
f
if
int
(
100
*
f
)
<>
int
(
100
*
fd
):
print
'pack_double() <> unpack_double()'
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