Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
7c1e5adf
Commit
7c1e5adf
authored
Dec 11, 2000
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make ConfigParser.Error inherit from Exception.
parent
5255c791
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
Lib/ConfigParser.py
Lib/ConfigParser.py
+3
-1
No files found.
Lib/ConfigParser.py
View file @
7c1e5adf
...
@@ -96,11 +96,13 @@ MAX_INTERPOLATION_DEPTH = 10
...
@@ -96,11 +96,13 @@ MAX_INTERPOLATION_DEPTH = 10
# exception classes
# exception classes
class
Error
:
class
Error
(
Exception
)
:
def
__init__
(
self
,
msg
=
''
):
def
__init__
(
self
,
msg
=
''
):
self
.
_msg
=
msg
self
.
_msg
=
msg
Exception
.
__init__
(
self
,
msg
)
def
__repr__
(
self
):
def
__repr__
(
self
):
return
self
.
_msg
return
self
.
_msg
__str__
=
__repr__
class
NoSectionError
(
Error
):
class
NoSectionError
(
Error
):
def
__init__
(
self
,
section
):
def
__init__
(
self
,
section
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment