D9354: errors: remove ParseError.args
martinvonz (Martin von Zweigbergk)
phabricator at mercurial-scm.org
Sat Nov 21 00:26:45 UTC 2020
martinvonz created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
With the previous few patches, it is no longer needed (as far as the
test suite can tell anyway).
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D9354
AFFECTED FILES
mercurial/error.py
CHANGE DETAILS
diff --git a/mercurial/error.py b/mercurial/error.py
--- a/mercurial/error.py
+++ b/mercurial/error.py
@@ -265,12 +265,6 @@
def __init__(self, message, location=None, hint=None):
super(ParseError, self).__init__(message, hint=hint)
self.location = location
- # Pass the message and possibly location into the Exception constructor
- # to help code that looks for exc.args.
- if location is not None:
- Exception.__init__(self, message, location)
- else:
- Exception.__init__(self, message)
def format(self):
from .i18n import _
To: martinvonz, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list