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
ddaa7064
Kaydet (Commit)
ddaa7064
authored
Mar 17, 2008
tarafından
Ka-Ping Yee
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch from jbalogh fixes issue #2282 (misnamed seekable() method).
üst
e84b6336
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
1 deletion
+10
-1
io.py
Lib/io.py
+1
-1
test_io.py
Lib/test/test_io.py
+6
-0
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/io.py
Dosyayı görüntüle @
ddaa7064
...
...
@@ -1203,7 +1203,7 @@ class TextIOWrapper(TextIOBase):
# were rendered by the decoder after feeding it those bytes. We
# use this to reconstruct intermediate decoder states in tell().
def
_
seekable
(
self
):
def
seekable
(
self
):
return
self
.
_seekable
def
flush
(
self
):
...
...
Lib/test/test_io.py
Dosyayı görüntüle @
ddaa7064
...
...
@@ -895,6 +895,12 @@ class TextIOWrapperTest(unittest.TestCase):
txt
.
seek
(
pos
)
self
.
assertEquals
(
txt
.
read
(
4
),
"BBB
\n
"
)
def
test_issue2282
(
self
):
buffer
=
io
.
BytesIO
(
self
.
testdata
)
txt
=
io
.
TextIOWrapper
(
buffer
,
encoding
=
"ascii"
)
self
.
assertEqual
(
buffer
.
seekable
(),
txt
.
seekable
())
def
test_newline_decoder
(
self
):
import
codecs
decoder
=
codecs
.
getincrementaldecoder
(
"utf-8"
)()
...
...
Misc/ACKS
Dosyayı görüntüle @
ddaa7064
...
...
@@ -33,6 +33,7 @@ Dwayne Bailey
Stig Bakken
Greg Ball
Luigi Ballabio
Jeff Balogh
Michael J. Barber
Chris Barker
Quentin Barnes
...
...
Misc/NEWS
Dosyayı görüntüle @
ddaa7064
...
...
@@ -30,6 +30,8 @@ What's New in Python 3.0a3?
Core and Builtins
-----------------
- Issue #2282: io.TextIOWrapper was not overriding seekable() from io.IOBase.
- Issue #2115: Important speedup in setting __slot__ attributes. Also
prevent a possible crash: an Abstract Base Class would try to access a slot
on a registered virtual subclass.
...
...
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