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
fffd7224
Kaydet (Commit)
fffd7224
authored
Agu 03, 2001
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
The test opened the binary test data files in text mode! Fixed.
üst
5756ee0f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test_uu.py
Lib/test/test_uu.py
+3
-3
No files found.
Lib/test/test_uu.py
Dosyayı görüntüle @
fffd7224
...
...
@@ -60,11 +60,11 @@ if verbose:
tmpIn
=
TESTFN
+
"i"
tmpOut
=
TESTFN
+
"o"
try
:
fin
=
open
(
tmpIn
,
'w'
)
fin
=
open
(
tmpIn
,
'w
b
'
)
fin
.
write
(
teststr
)
fin
.
close
()
fin
=
open
(
tmpIn
,
'r'
)
fin
=
open
(
tmpIn
,
'r
b
'
)
fout
=
open
(
tmpOut
,
'w'
)
uu
.
encode
(
fin
,
fout
,
tmpIn
,
mode
=
0644
)
fin
.
close
()
...
...
@@ -79,7 +79,7 @@ try:
if
verbose
:
print
'6. decode file-> file'
uu
.
decode
(
tmpOut
)
fin
=
open
(
tmpIn
,
'r'
)
fin
=
open
(
tmpIn
,
'r
b
'
)
s
=
fin
.
read
()
fin
.
close
()
verify
(
s
==
teststr
)
...
...
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