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
908632a6
Kaydet (Commit)
908632a6
authored
Mar 26, 2002
tarafından
Neil Schemenauer
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Implement iterator protocol.
üst
13e34f7a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
4 deletions
+13
-4
fileinput.py
Lib/fileinput.py
+13
-4
No files found.
Lib/fileinput.py
Dosyayı görüntüle @
908632a6
...
@@ -166,7 +166,10 @@ class FileInput:
...
@@ -166,7 +166,10 @@ class FileInput:
self
.
nextfile
()
self
.
nextfile
()
self
.
_files
=
()
self
.
_files
=
()
def
__getitem__
(
self
,
i
):
def
__iter__
(
self
):
return
self
def
next
(
self
):
try
:
try
:
line
=
self
.
_buffer
[
self
.
_bufindex
]
line
=
self
.
_buffer
[
self
.
_bufindex
]
except
IndexError
:
except
IndexError
:
...
@@ -176,12 +179,18 @@ class FileInput:
...
@@ -176,12 +179,18 @@ class FileInput:
self
.
_lineno
+=
1
self
.
_lineno
+=
1
self
.
_filelineno
+=
1
self
.
_filelineno
+=
1
return
line
return
line
if
i
!=
self
.
_lineno
:
raise
RuntimeError
,
"accessing lines out of order"
line
=
self
.
readline
()
line
=
self
.
readline
()
if
not
line
:
if
not
line
:
raise
IndexError
,
"end of input reached"
raise
StopIteration
return
line
return
line
def
__getitem__
(
self
,
i
):
if
i
!=
self
.
_lineno
:
raise
RuntimeError
,
"accessing lines out of order"
try
:
return
self
.
next
()
except
StopIteration
:
raise
IndexError
,
"end of input reached"
def
nextfile
(
self
):
def
nextfile
(
self
):
savestdout
=
self
.
_savestdout
savestdout
=
self
.
_savestdout
...
...
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