Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cpython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
Python
cpython
Commits
ea66c31baeb8
Commit
ea66c31baeb8
authored
14 years ago
by
R David Murray
Browse files
Options
Downloads
Patches
Plain Diff
#11496: skip history test if clear_history is not available.
Patch by Natalia B. Bidart.
parent
ba8828cdb5ee
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Lib/test/test_readline.py
+4
-0
4 additions, 0 deletions
Lib/test/test_readline.py
Misc/ACKS
+1
-0
1 addition, 0 deletions
Misc/ACKS
with
5 additions
and
0 deletions
Lib/test/test_readline.py
+
4
−
0
View file @
ea66c31b
...
...
@@ -12,6 +12,10 @@
readline
=
import_module
(
'
readline
'
)
class
TestHistoryManipulation
(
unittest
.
TestCase
):
@unittest.skipIf
(
not
hasattr
(
readline
,
'
clear_history
'
),
"
The history update test cannot be run because the
"
"
clear_history method is not available.
"
)
def
testHistoryUpdates
(
self
):
readline
.
clear_history
()
...
...
This diff is collapsed.
Click to expand it.
Misc/ACKS
+
1
−
0
View file @
ea66c31b
...
...
@@ -79,6 +79,7 @@
Steven Bethard
Stephen Bevan
Ron Bickers
Natalia B. Bidart
Adrian von Bidder
David Binger
Dominic Binks
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment