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
a1b49013
Kaydet (Commit)
a1b49013
authored
Mar 31, 2009
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fix TextIOWrapper.read() when the buffer is not readable #5628
üst
d2ee64d9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
0 deletions
+15
-0
_pyio.py
Lib/_pyio.py
+1
-0
test_io.py
Lib/test/test_io.py
+7
-0
NEWS
Misc/NEWS
+2
-0
_textio.c
Modules/_textio.c
+5
-0
No files found.
Lib/_pyio.py
Dosyayı görüntüle @
a1b49013
...
...
@@ -1696,6 +1696,7 @@ class TextIOWrapper(TextIOBase):
return
cookie
def
read
(
self
,
n
=
None
):
self
.
_checkReadable
()
if
n
is
None
:
n
=
-
1
decoder
=
self
.
_decoder
or
self
.
_get_decoder
()
...
...
Lib/test/test_io.py
Dosyayı görüntüle @
a1b49013
...
...
@@ -1754,6 +1754,13 @@ class TextIOWrapperTest(unittest.TestCase):
self
.
assertEquals
(
f
.
read
(),
data
*
2
)
self
.
assertEquals
(
buf
.
getvalue
(),
(
data
*
2
)
.
encode
(
encoding
))
def
test_unreadable
(
self
):
class
UnReadable
(
self
.
BytesIO
):
def
readable
(
self
):
return
False
txt
=
self
.
TextIOWrapper
(
UnReadable
())
self
.
assertRaises
(
IOError
,
txt
.
read
)
def
test_read_one_by_one
(
self
):
txt
=
self
.
TextIOWrapper
(
self
.
BytesIO
(
b
"AA
\r\n
BB"
))
reads
=
""
...
...
Misc/NEWS
Dosyayı görüntüle @
a1b49013
...
...
@@ -53,6 +53,8 @@ Core and Builtins
Library
-------
- Issue #5628: Fix io.TextIOWrapper.read() with a unreadable buffer.
- Issue #5619: Multiprocessing children disobey the debug flag and causes
popups on windows buildbots. Patch applied to work around this issue.
...
...
Modules/_textio.c
Dosyayı görüntüle @
a1b49013
...
...
@@ -1348,6 +1348,11 @@ TextIOWrapper_read(PyTextIOWrapperObject *self, PyObject *args)
CHECK_CLOSED
(
self
);
if
(
self
->
decoder
==
NULL
)
{
PyErr_SetString
(
PyExc_IOError
,
"not readable"
);
return
NULL
;
}
if
(
_TextIOWrapper_writeflush
(
self
)
<
0
)
return
NULL
;
...
...
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