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
9d9dc8eb
Kaydet (Commit)
9d9dc8eb
authored
May 06, 2012
tarafından
Nadeem Vawda
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix test_gzip failures on Windows.
üst
b55d9e3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test_gzip.py
Lib/test/test_gzip.py
+3
-3
No files found.
Lib/test/test_gzip.py
Dosyayı görüntüle @
9d9dc8eb
...
...
@@ -409,7 +409,7 @@ class TestOpen(BaseTest):
self
.
assertEqual
(
file_data
,
uncompressed
*
2
)
def
test_text_modes
(
self
):
uncompressed
=
data1
.
decode
(
"ascii"
)
*
50
uncompressed
=
data1
.
decode
(
"ascii"
)
.
replace
(
"
\n
"
,
os
.
linesep
)
*
50
with
gzip
.
open
(
self
.
filename
,
"wt"
)
as
f
:
f
.
write
(
uncompressed
)
with
open
(
self
.
filename
,
"rb"
)
as
f
:
...
...
@@ -436,7 +436,7 @@ class TestOpen(BaseTest):
def
test_encoding
(
self
):
# Test non-default encoding.
uncompressed
=
data1
.
decode
(
"ascii"
)
*
50
uncompressed
=
data1
.
decode
(
"ascii"
)
.
replace
(
"
\n
"
,
os
.
linesep
)
*
50
with
gzip
.
open
(
self
.
filename
,
"wt"
,
encoding
=
"utf-16"
)
as
f
:
f
.
write
(
uncompressed
)
with
open
(
self
.
filename
,
"rb"
)
as
f
:
...
...
@@ -456,7 +456,7 @@ class TestOpen(BaseTest):
def
test_newline
(
self
):
# Test with explicit newline (universal newline mode disabled).
uncompressed
=
data1
.
decode
(
"ascii"
)
*
50
with
gzip
.
open
(
self
.
filename
,
"wt"
)
as
f
:
with
gzip
.
open
(
self
.
filename
,
"wt"
,
newline
=
"
\n
"
)
as
f
:
f
.
write
(
uncompressed
)
with
gzip
.
open
(
self
.
filename
,
"rt"
,
newline
=
"
\r
"
)
as
f
:
self
.
assertEqual
(
f
.
readlines
(),
[
uncompressed
])
...
...
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