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
eb70be2b
Kaydet (Commit)
eb70be2b
authored
Eki 01, 2012
tarafından
Nadeem Vawda
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #16304: Further optimize BZ2File.readlines?().
üst
138ad506
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
bz2.py
Lib/bz2.py
+8
-6
No files found.
Lib/bz2.py
Dosyayı görüntüle @
eb70be2b
...
...
@@ -319,9 +319,10 @@ class BZ2File(io.BufferedIOBase):
non-negative, no more than size bytes will be read (in which
case the line may be incomplete). Returns b'' if already at EOF.
"""
if
not
hasattr
(
size
,
"__index__"
):
raise
TypeError
(
"Integer argument expected"
)
size
=
size
.
__index__
()
if
not
isinstance
(
size
,
int
):
if
not
hasattr
(
size
,
"__index__"
):
raise
TypeError
(
"Integer argument expected"
)
size
=
size
.
__index__
()
with
self
.
_lock
:
self
.
_check_can_read
()
# Shortcut for the common case - the whole line is in the buffer.
...
...
@@ -341,9 +342,10 @@ class BZ2File(io.BufferedIOBase):
further lines will be read once the total size of the lines read
so far equals or exceeds size.
"""
if
not
hasattr
(
size
,
"__index__"
):
raise
TypeError
(
"Integer argument expected"
)
size
=
size
.
__index__
()
if
not
isinstance
(
size
,
int
):
if
not
hasattr
(
size
,
"__index__"
):
raise
TypeError
(
"Integer argument expected"
)
size
=
size
.
__index__
()
with
self
.
_lock
:
return
io
.
BufferedIOBase
.
readlines
(
self
,
size
)
...
...
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