##// END OF EJS Templates
Remove unneeded `skip_doctest` decorator usages
Nikita Kniazev -
Show More
@@ -114,7 +114,6 b' from IPython import get_ipython'
114 114 from IPython.utils import PyColorize
115 115 from IPython.utils import coloransi, py3compat
116 116 from IPython.core.excolors import exception_colors
117 from IPython.testing.skipdoctest import skip_doctest
118 117
119 118 # skip module docstests
120 119 __skip_doctest__ = True
@@ -180,7 +179,6 b' class Tracer(object):'
180 179 while functioning acceptably (though with limitations) if outside of it.
181 180 """
182 181
183 @skip_doctest
184 182 def __init__(self, colors=None):
185 183 """
186 184 DEPRECATED
@@ -921,7 +919,6 b' class Pdb(OldPdb):'
921 919 return True
922 920 return False
923 921
924 @skip_doctest
925 922 def _is_in_decorator_internal_and_should_skip(self, frame):
926 923 """
927 924 Utility to tell us whether we are in a decorator internal and should stop.
@@ -413,7 +413,6 b' class ExecutionMagics(Magics):'
413 413 self.shell.call_pdb = new_pdb
414 414 print('Automatic pdb calling has been turned',on_off(new_pdb))
415 415
416 @skip_doctest
417 416 @magic_arguments.magic_arguments()
418 417 @magic_arguments.argument('--breakpoint', '-b', metavar='FILE:LINE',
419 418 help="""
@@ -63,7 +63,6 b' class OSMagics(Magics):'
63 63 super().__init__(shell=shell, **kwargs)
64 64
65 65
66 @skip_doctest
67 66 def _isexec_POSIX(self, file):
68 67 """
69 68 Test for executable on a POSIX system
@@ -75,14 +74,12 b' class OSMagics(Magics):'
75 74
76 75
77 76
78 @skip_doctest
79 77 def _isexec_WIN(self, file):
80 78 """
81 79 Test for executable file on non POSIX system
82 80 """
83 81 return file.is_file() and self.execre.match(file.name) is not None
84 82
85 @skip_doctest
86 83 def isexec(self, file):
87 84 """
88 85 Test for executable file on non POSIX system
General Comments 0
You need to be logged in to leave comments. Login now