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
07b78a87
Commit
07b78a87
authored
Jan 09, 2001
by
Guido van Rossum
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test for xreadline.
parent
ea3375d9
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
0 deletions
+46
-0
Lib/test/output/test_xreadline
Lib/test/output/test_xreadline
+4
-0
Lib/test/test_xreadline.py
Lib/test/test_xreadline.py
+42
-0
No files found.
Lib/test/output/test_xreadline
0 → 100644
View file @
07b78a87
test_xrl
AttributeError
TypeError
RuntimeError xreadlines object accessed out of order
Lib/test/test_xreadline.py
0 → 100644
View file @
07b78a87
from
test_support
import
verbose
class
XReader
:
def
__init__
(
self
):
self
.
count
=
5
def
readlines
(
self
,
sizehint
=
None
):
self
.
count
=
self
.
count
-
1
return
map
(
lambda
x
:
"%d
\
n
"
%
x
,
range
(
self
.
count
))
class
Null
:
pass
import
xreadlines
lineno
=
0
try
:
xreadlines
.
xreadlines
(
Null
())[
0
]
except
AttributeError
,
detail
:
print
"AttributeError"
else
:
print
"Did not throw attribute error"
try
:
xreadlines
.
xreadlines
(
XReader
)[
0
]
except
TypeError
,
detail
:
print
"TypeError"
else
:
print
"Did not throw type error"
try
:
xreadlines
.
xreadlines
(
XReader
())[
1
]
except
RuntimeError
,
detail
:
print
"RuntimeError"
,
detail
else
:
print
"Did not throw runtime error"
xresult
=
[
'0
\
n
'
,
'1
\
n
'
,
'2
\
n
'
,
'3
\
n
'
,
'0
\
n
'
,
'1
\
n
'
,
'2
\
n
'
,
'0
\
n
'
,
'1
\
n
'
,
'0
\
n
'
]
for
line
in
xreadlines
.
xreadlines
(
XReader
()):
if
line
!=
xresult
[
lineno
]:
print
"line %d differs"
%
lineno
lineno
=
lineno
+
1
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