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
eed1661b
Commit
eed1661b
authored
Jan 21, 2014
by
Terry Jan Reedy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #16655: Explain why Idle's test_calltips has 'fragile' tests of builtins.
parent
681ede8b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
Lib/idlelib/idle_test/test_calltips.py
Lib/idlelib/idle_test/test_calltips.py
+8
-0
No files found.
Lib/idlelib/idle_test/test_calltips.py
View file @
eed1661b
...
@@ -33,8 +33,16 @@ tc = TC()
...
@@ -33,8 +33,16 @@ tc = TC()
signature
=
ct
.
get_argspec
# 2.7 and 3.x use different functions
signature
=
ct
.
get_argspec
# 2.7 and 3.x use different functions
class
Get_signatureTest
(
unittest
.
TestCase
):
class
Get_signatureTest
(
unittest
.
TestCase
):
# The signature function must return a string, even if blank.
# Test a variety of objects to be sure that none cause it to raise
# (quite aside from getting as correct an answer as possible).
# The tests of builtins may break if inspect or the docstrings change,
# but a red buildbot is better than a user crash (as has happened).
# For a simple mismatch, change the expected output to the actual.
def
test_builtins
(
self
):
def
test_builtins
(
self
):
# These test will break if
# Python class that inherits builtin methods
# Python class that inherits builtin methods
class
List
(
list
):
"List() doc"
class
List
(
list
):
"List() doc"
# Simulate builtin with no docstring for default argspec test
# Simulate builtin with no docstring for default argspec test
...
...
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