summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-03-31 13:58:20 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-03-31 13:58:20 (GMT)
commit27a353020bef4318896bf16f558ed7e2af76e40a (patch)
treedbecb6bb1bcbb66b156e536bfba198bf60952b89 /Lib
parent57b17ad6aeb821262aef41ffd31d1302f18e79c5 (diff)
downloadcpython-27a353020bef4318896bf16f558ed7e2af76e40a.zip
cpython-27a353020bef4318896bf16f558ed7e2af76e40a.tar.gz
cpython-27a353020bef4318896bf16f558ed7e2af76e40a.tar.bz2
Stop using string exceptions
Diffstat (limited to 'Lib')
-rw-r--r--Lib/bdb.py2
-rw-r--r--Lib/macpath.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/bdb.py b/Lib/bdb.py
index ccd729c..b05ed22 100644
--- a/Lib/bdb.py
+++ b/Lib/bdb.py
@@ -6,7 +6,7 @@ import types
__all__ = ["BdbQuit","Bdb","Breakpoint"]
-BdbQuit = 'bdb.BdbQuit' # Exception to give up completely
+class BdbQuit(Exception): pass
class Bdb:
diff --git a/Lib/macpath.py b/Lib/macpath.py
index f8ca051..2881c32 100644
--- a/Lib/macpath.py
+++ b/Lib/macpath.py
@@ -170,7 +170,7 @@ def expanduser(path):
"""Dummy to retain interface-compatibility with other operating systems."""
return path
-norm_error = 'macpath.norm_error: path cannot be normalized'
+class norm_error(Exception): pass
def normpath(s):
"""Normalize a pathname. Will return the same result for