diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-03-31 13:58:20 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-03-31 13:58:20 (GMT) |
commit | 27a353020bef4318896bf16f558ed7e2af76e40a (patch) | |
tree | dbecb6bb1bcbb66b156e536bfba198bf60952b89 /Lib/bdb.py | |
parent | 57b17ad6aeb821262aef41ffd31d1302f18e79c5 (diff) | |
download | cpython-27a353020bef4318896bf16f558ed7e2af76e40a.zip cpython-27a353020bef4318896bf16f558ed7e2af76e40a.tar.gz cpython-27a353020bef4318896bf16f558ed7e2af76e40a.tar.bz2 |
Stop using string exceptions
Diffstat (limited to 'Lib/bdb.py')
-rw-r--r-- | Lib/bdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ import types __all__ = ["BdbQuit","Bdb","Breakpoint"] -BdbQuit = 'bdb.BdbQuit' # Exception to give up completely +class BdbQuit(Exception): pass class Bdb: |