Skip to content

Commit

Permalink
Merge from 2.x: PR #458
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Jun 11, 2023
2 parents 8fe2d31 + cc78610 commit fdf07ae
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions spyder_kernels/customize/spyderpdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,15 @@ def __init__(self, completekey='tab', stdin=None, stdout=None,
# Keep track of interrupting state to avoid several interruptions
self.interrupting = False

# Turn off IPython's debugger skip funcionality by default because
# it makes our debugger quite slow. It's also important to remark
# that this functionality doesn't do anything on its own. Users
# need to mark what frames they want to skip for it to be useful.
# So, we hope that knowledgeable users will find that they need to
# enable it in Spyder.
# Fixes spyder-ide/spyder#20639.
self._predicates["debuggerskip"] = False

# --- Methods overriden for code execution
def print_exclamation_warning(self):
"""Print pdb warning for exclamation mark."""
Expand Down

0 comments on commit fdf07ae

Please sign in to comment.