vote up 4 vote down star

I get a warning that BaseException.message is deprecated in Python 2.6 when I use the following user-defined exception:

class MyException(Exception):

def __init__(self, message):
    self.message = message

def __str__(self):
    return repr(self.message)

This is the warning:

DeprecationWarning: BaseException.message has been deprecated as of Python 2.6 self.message = message

What's wrong with this? What do I have to change to get rid of the deprecation warning?

flag

2  
See PEP 352 for the reasons: python.org/dev/peps/… – balpha Aug 13 at 14:09

2 Answers

vote up 2 vote down check

Yes, its deprecated in Python 2.6 because its going away in Python 3.0

BaseException class does nto provide a way to store error message anymore. You'll have to implement it yourself. You can do this with a subclass that uses a property for storing the message.

class MyException(Exception):
    def _get_message(self, message): 
        return self._message
    def _set_message(self, message): 
        self._message = message
    message = property(_get_message, _set_message)

Hope this helps

link|flag
This helped, thanks. Now to vent frustration: ARGH! :) – romkyns 2 days ago
vote up 3 vote down
class MyException(Exception):

    def __str__(self):
        return repr(self.args[0])

e = MyException('asdf')
print e

This is your class in Python2.6 style. The new exception takes an arbitrary number of arguments.

link|flag
1  
The old Exception class also takes any number of arguments. You can entirely avoid the message property like what you're doing, but if that would break your existing code, you can solve the problem by implementing your own message property. – Sahasranaman MS Aug 13 at 14:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.