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
163f8000
Commit
163f8000
authored
Aug 31, 2004
by
Andrew M. Kuchling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove tests for mpz, rotor, xreadlines
parent
595ac8a6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
84 deletions
+0
-84
Lib/test/regrtest.py
Lib/test/regrtest.py
+0
-4
Lib/test/test_rotor.py
Lib/test/test_rotor.py
+0
-34
Lib/test/test_xreadline.py
Lib/test/test_xreadline.py
+0
-46
No files found.
Lib/test/regrtest.py
View file @
163f8000
...
...
@@ -693,7 +693,6 @@ _expectations = {
test_largefile
test_linuxaudiodev
test_mhlib
test_mpz
test_nis
test_openpty
test_ossaudiodev
...
...
@@ -750,7 +749,6 @@ _expectations = {
test_linuxaudiodev
test_locale
test_mmap
test_mpz
test_nis
test_ntpath
test_openpty
...
...
@@ -901,7 +899,6 @@ _expectations = {
test_linuxaudiodev
test_locale
test_minidom
test_mpz
test_nis
test_ntpath
test_ossaudiodev
...
...
@@ -923,7 +920,6 @@ _expectations = {
test_gzip
test_imgfile
test_linuxaudiodev
test_mpz
test_openpty
test_zipfile
test_zlib
...
...
Lib/test/test_rotor.py
deleted
100644 → 0
View file @
595ac8a6
import
warnings
warnings
.
filterwarnings
(
"ignore"
,
category
=
DeprecationWarning
,
message
=
'.*is deprecated'
,
module
=
__name__
)
import
rotor
r
=
rotor
.
newrotor
(
"you'll never guess this"
)
r
=
rotor
.
newrotor
(
"you'll never guess this"
,
12
)
A
=
'spam and eggs'
B
=
'cheese shop'
a
=
r
.
encrypt
(
A
)
print
repr
(
a
)
b
=
r
.
encryptmore
(
B
)
print
repr
(
b
)
A1
=
r
.
decrypt
(
a
)
print
A1
if
A1
!=
A
:
print
'decrypt failed'
B1
=
r
.
decryptmore
(
b
)
print
B1
if
B1
!=
B
:
print
'decryptmore failed'
try
:
r
.
setkey
()
except
TypeError
:
pass
r
.
setkey
(
'you guessed it!'
)
Lib/test/test_xreadline.py
deleted
100644 → 0
View file @
595ac8a6
from
test.test_support
import
verbose
import
warnings
warnings
.
filterwarnings
(
'ignore'
,
"xreadlines"
,
DeprecationWarning
)
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 (expected)"
else
:
print
"Did not throw attribute error"
try
:
xreadlines
.
xreadlines
(
XReader
)[
0
]
except
TypeError
,
detail
:
print
"TypeError (expected)"
else
:
print
"Did not throw type error"
try
:
xreadlines
.
xreadlines
(
XReader
())[
1
]
except
RuntimeError
,
detail
:
print
"RuntimeError (expected):"
,
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
+=
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