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
dd72b3f6
Kaydet (Commit)
dd72b3f6
authored
Eki 21, 2012
tarafından
Nadeem Vawda
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #5148: Ignore 'U' in mode given to gzip.open() and gzip.GzipFile().
üst
c3084834
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
0 deletions
+13
-0
gzip.py
Lib/gzip.py
+4
-0
test_gzip.py
Lib/test/test_gzip.py
+7
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/gzip.py
Dosyayı görüntüle @
dd72b3f6
...
...
@@ -81,6 +81,10 @@ class GzipFile(io.BufferedIOBase):
"""
# Make sure we don't inadvertently enable universal newlines on the
# underlying file object - in read mode, this causes data corruption.
if
mode
:
mode
=
mode
.
replace
(
'U'
,
''
)
# guarantee the file is opened in binary mode on platforms
# that care about that sort of thing
if
mode
and
'b'
not
in
mode
:
...
...
Lib/test/test_gzip.py
Dosyayı görüntüle @
dd72b3f6
...
...
@@ -53,6 +53,13 @@ class TestGzip(unittest.TestCase):
d
=
f
.
read
()
self
.
assertEqual
(
d
,
data1
*
50
)
def
test_read_universal_newlines
(
self
):
# Issue #5148: Reading breaks when mode contains 'U'.
self
.
test_write
()
with
gzip
.
GzipFile
(
self
.
filename
,
'rU'
)
as
f
:
d
=
f
.
read
()
self
.
assertEqual
(
d
,
data1
*
50
)
def
test_io_on_closed_object
(
self
):
# Test that I/O operations on closed GzipFile objects raise a
# ValueError, just like the corresponding functions on file objects.
...
...
Misc/NEWS
Dosyayı görüntüle @
dd72b3f6
...
...
@@ -122,6 +122,8 @@ Core and Builtins
Library
-------
-
Issue
#
5148
:
Ignore
'U'
in
mode
given
to
gzip
.
open
()
and
gzip
.
GzipFile
().
-
Issue
#
16220
:
wsgiref
now
always
calls
close
()
on
an
iterable
response
.
Patch
by
Brent
Tubbs
.
...
...
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