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
e5127299
Kaydet (Commit)
e5127299
authored
Mar 09, 2014
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Issue #20875: Merge from 3.3
üst
b8bf9951
6120739f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
gzip.py
Lib/gzip.py
+1
-1
test_gzip.py
Lib/test/test_gzip.py
+7
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/gzip.py
Dosyayı görüntüle @
e5127299
...
...
@@ -96,7 +96,7 @@ class _PaddedFile:
self
.
_read
-=
len
(
prepend
)
return
else
:
self
.
_buffer
=
self
.
_buffer
[
read
:]
+
prepend
self
.
_buffer
=
self
.
_buffer
[
self
.
_
read
:]
+
prepend
self
.
_length
=
len
(
self
.
_buffer
)
self
.
_read
=
0
...
...
Lib/test/test_gzip.py
Dosyayı görüntüle @
e5127299
...
...
@@ -421,6 +421,13 @@ class TestGzip(BaseTest):
with
gzip
.
GzipFile
(
fileobj
=
io
.
BytesIO
(
gzdata
))
as
f
:
self
.
assertEqual
(
f
.
read
(),
b
'Test'
)
def
test_prepend_error
(
self
):
# See issue #20875
with
gzip
.
open
(
self
.
filename
,
"wb"
)
as
f
:
f
.
write
(
data1
)
with
gzip
.
open
(
self
.
filename
,
"rb"
)
as
f
:
f
.
fileobj
.
prepend
()
class
TestOpen
(
BaseTest
):
def
test_binary_modes
(
self
):
uncompressed
=
data1
*
50
...
...
Misc/NEWS
Dosyayı görüntüle @
e5127299
...
...
@@ -20,6 +20,9 @@ Core and Builtins
Library
-------
- Issue #20875: Prevent possible gzip "'
read
' is not defined" NameError.
Patch by Claudiu Popa.
- Issue #11558: ``email.message.Message.attach`` now returns a more
useful error message if ``attach`` is called on a message for which
``is_multipart`` is False.
...
...
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