Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
c1265bd9
Commit
c1265bd9
authored
Jan 31, 2003
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make StringIO its own iterator, similar to real files.
(This should also be done to cStringIO.)
parent
5b8132ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
Lib/StringIO.py
Lib/StringIO.py
+9
-1
No files found.
Lib/StringIO.py
View file @
c1265bd9
...
...
@@ -59,7 +59,15 @@ class StringIO:
self
.
softspace
=
0
def
__iter__
(
self
):
return
iter
(
self
.
readline
,
''
)
return
self
def
next
(
self
):
if
self
.
closed
:
raise
StopIteration
r
=
self
.
readline
()
if
not
r
:
raise
StopIteration
return
r
def
close
(
self
):
"""Free the memory buffer.
...
...
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