##// END OF EJS Templates
Merge pull request #8390 from takluyver/skip-builtin-no-signature...
Matthias Bussonnier -
r21321:fe4eb8d9 merge
parent child Browse files
Show More
@@ -16,6 +16,7 b' from __future__ import print_function'
16 # Stdlib imports
16 # Stdlib imports
17 import os
17 import os
18 import re
18 import re
19 import sys
19
20
20 # Third-party imports
21 # Third-party imports
21 import nose.tools as nt
22 import nose.tools as nt
@@ -48,7 +49,7 b' ip = get_ipython()'
48 # defined, if any code is inserted above, the following line will need to be
49 # defined, if any code is inserted above, the following line will need to be
49 # updated. Do NOT insert any whitespace between the next line and the function
50 # updated. Do NOT insert any whitespace between the next line and the function
50 # definition below.
51 # definition below.
51 THIS_LINE_NUMBER = 51 # Put here the actual number of this line
52 THIS_LINE_NUMBER = 52 # Put here the actual number of this line
52 def test_find_source_lines():
53 def test_find_source_lines():
53 nt.assert_equal(oinspect.find_source_lines(test_find_source_lines),
54 nt.assert_equal(oinspect.find_source_lines(test_find_source_lines),
54 THIS_LINE_NUMBER+1)
55 THIS_LINE_NUMBER+1)
@@ -203,6 +204,7 b' def test_calltip_function2():'
203 check_calltip(g, 'g', 'g(y, z=3, *a, **kw)', '<no docstring>')
204 check_calltip(g, 'g', 'g(y, z=3, *a, **kw)', '<no docstring>')
204
205
205
206
207 @skipif(sys.version_info >= (3, 5))
206 def test_calltip_builtin():
208 def test_calltip_builtin():
207 check_calltip(sum, 'sum', None, sum.__doc__)
209 check_calltip(sum, 'sum', None, sum.__doc__)
208
210
General Comments 0
You need to be logged in to leave comments. Login now