diff options
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r-- | Lib/bdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py index fddc3e67a8..f0891f1fbb 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -130,7 +130,7 @@ class Bdb: return False def do_clear(self, arg): - raise NotImplementedError, "subclass of bdb must implement do_clear()" + raise NotImplementedError("subclass of bdb must implement do_clear()") def break_anywhere(self, frame): return self.canonic(frame.f_code.co_filename) in self.breaks |