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
892b0b92
Kaydet (Commit)
892b0b92
authored
Ock 18, 2012
tarafından
Nadeem Vawda
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #13781: Fix GzipFile to work with os.fdopen()'d file objects.
üst
031605ad
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
2 deletions
+15
-2
gzip.py
Lib/gzip.py
+4
-2
test_gzip.py
Lib/test/test_gzip.py
+8
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/gzip.py
Dosyayı görüntüle @
892b0b92
...
...
@@ -156,8 +156,10 @@ class GzipFile(io.BufferedIOBase):
if
fileobj
is
None
:
fileobj
=
self
.
myfileobj
=
builtins
.
open
(
filename
,
mode
or
'rb'
)
if
filename
is
None
:
if
hasattr
(
fileobj
,
'name'
):
filename
=
fileobj
.
name
else
:
filename
=
''
if
hasattr
(
fileobj
,
'name'
)
and
isinstance
(
fileobj
.
name
,
str
):
filename
=
fileobj
.
name
else
:
filename
=
''
if
mode
is
None
:
if
hasattr
(
fileobj
,
'mode'
):
mode
=
fileobj
.
mode
else
:
mode
=
'rb'
...
...
Lib/test/test_gzip.py
Dosyayı görüntüle @
892b0b92
...
...
@@ -323,6 +323,14 @@ class TestGzip(unittest.TestCase):
self
.
assertEqual
(
f
.
read
(
100
),
b
''
)
self
.
assertEqual
(
nread
,
len
(
uncompressed
))
def
test_fileobj_from_fdopen
(
self
):
# Issue #13781: Opening a GzipFile for writing fails when using a
# fileobj created with os.fdopen().
fd
=
os
.
open
(
self
.
filename
,
os
.
O_WRONLY
|
os
.
O_CREAT
)
with
os
.
fdopen
(
fd
,
"wb"
)
as
f
:
with
gzip
.
GzipFile
(
fileobj
=
f
,
mode
=
"w"
)
as
g
:
pass
# Testing compress/decompress shortcut functions
def
test_compress
(
self
):
...
...
Misc/NEWS
Dosyayı görüntüle @
892b0b92
...
...
@@ -100,6 +100,9 @@ Core and Builtins
Library
-------
- Issue #13781: Fix GzipFile bug that caused an exception to be raised when
opening for writing using a fileobj returned by os.fdopen().
- Issue #13803: Under Solaris, distutils doesn't include bitness
in the directory name.
...
...
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