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
8d7d6bcc
Kaydet (Commit)
8d7d6bcc
authored
Şub 13, 2013
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #11311: StringIO.readline(0) now returns an empty string as all other
file-like objects.
üst
34fe1b7a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
1 deletion
+6
-1
StringIO.py
Lib/StringIO.py
+1
-1
test_StringIO.py
Lib/test/test_StringIO.py
+2
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/StringIO.py
Dosyayı görüntüle @
8d7d6bcc
...
...
@@ -158,7 +158,7 @@ class StringIO:
newpos
=
self
.
len
else
:
newpos
=
i
+
1
if
length
is
not
None
and
length
>
0
:
if
length
is
not
None
and
length
>
=
0
:
if
self
.
pos
+
length
<
newpos
:
newpos
=
self
.
pos
+
length
r
=
self
.
buf
[
self
.
pos
:
newpos
]
...
...
Lib/test/test_StringIO.py
Dosyayı görüntüle @
8d7d6bcc
...
...
@@ -28,6 +28,8 @@ class TestGenericStringIO(unittest.TestCase):
eq
=
self
.
assertEqual
self
.
assertRaises
(
TypeError
,
self
.
_fp
.
seek
)
eq
(
self
.
_fp
.
read
(
10
),
self
.
_line
[:
10
])
eq
(
self
.
_fp
.
read
(
0
),
''
)
eq
(
self
.
_fp
.
readline
(
0
),
''
)
eq
(
self
.
_fp
.
readline
(),
self
.
_line
[
10
:]
+
'
\n
'
)
eq
(
len
(
self
.
_fp
.
readlines
(
60
)),
2
)
self
.
_fp
.
seek
(
0
)
...
...
Misc/NEWS
Dosyayı görüntüle @
8d7d6bcc
...
...
@@ -205,6 +205,9 @@ Core and Builtins
Library
-------
- Issue #11311: StringIO.readline(0) now returns an empty string as all other
file-like objects.
- Issue #16800: tempfile.gettempdir() no longer left temporary files when
the disk is full. Original patch by Amir Szekely.
...
...
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