Skip to content

Commit

Permalink
Merge from 3.x: PR #7251
Browse files Browse the repository at this point in the history
Fixes #5201
  • Loading branch information
ccordoba12 committed Jun 4, 2018
2 parents 56d4fd4 + 554ed0b commit bd86ec1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spyder/utils/site/sitecustomize.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,8 @@ def reset(self):
# specific behaviour desired?)
@monkeypatch_method(pdb.Pdb, 'Pdb')
def postcmd(self, stop, line):
self.notify_spyder(self.curframe)
if line != "!get_ipython().kernel._set_spyder_breakpoints()":
self.notify_spyder(self.curframe)
return self._old_Pdb_postcmd(stop, line)


Expand Down

0 comments on commit bd86ec1

Please sign in to comment.