Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f74e46c commit 93cf79fCopy full SHA for 93cf79f
2 files changed
Lib/bdb.py
@@ -6,7 +6,8 @@
6
7
__all__ = ["BdbQuit","Bdb","Breakpoint"]
8
9
-class BdbQuit(Exception): pass
+class BdbQuit(Exception):
10
+ """Exception to give up completely"""
11
12
13
class Bdb:
Lib/macpath.py
@@ -170,7 +170,8 @@ def expanduser(path):
170
"""Dummy to retain interface-compatibility with other operating systems."""
171
return path
172
173
-class norm_error(Exception): pass
+class norm_error(Exception):
174
+ """Path cannot be normalized"""
175
176
def normpath(s):
177
"""Normalize a pathname. Will return the same result for
0 commit comments