Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eab230 commit 0ab1113Copy full SHA for 0ab1113
1 file changed
IPython/core/debugger.py
@@ -1107,6 +1107,21 @@ def stop_here(self, frame):
1107
]
1108
)
1109
1110
+ if self.skip and self.is_skipped_module(frame.f_globals.get("__name__", "")):
1111
+ print(
1112
+ self.theme.format(
1113
+ [
1114
+ (
1115
+ Token.ExcName,
1116
+ " [... skipped 1 ignored module(s)]",
1117
+ ),
1118
+ (Token, "\n"),
1119
+ ]
1120
+ )
1121
1122
+
1123
+ return False
1124
1125
return super().stop_here(frame)
1126
1127
def do_up(self, arg):
0 commit comments