Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to know WHY this fails:

class ConfigurationError(Exception):
    def __init__(self, *args):
        super(ConfigurationError, self).__init__(self, args)

        self.args = list(args)
        # Do some formatting on the message string stored in self.args[0]
        self.args[0]=self.__prettyfi(self.args[0])

    def __prettyfi(self, arg):
        pass
        # Actual function splits message at word
        # boundaries at pos rfind(arg[1:78]) if len(arg) >78
        # it does this by converting a whitespace char to a \n

When I run the code, i receive the following msg: <snip> ConfigurationError.py", line 7, in __init__ self.args[0]=self.__prettyfi(self.args[0]) TypeError: 'tuple' object does not support item assignment

I edited the line no. to match this code sample.

I do not understand why self.args = list(args) does not correctly unpack the tuple into the list at line 5.

(I have a sneaking suspicion I am failing to remember something super-basic...)

share|improve this question

1 Answer

up vote 11 down vote accepted

Exception.args is a descriptor; it hooks __set__ to turn anything you assign to self.args into a tuple.

So, as soon as you assign your list to self.args, the descriptor converts it back to a tuple. It's not that your list() call failed, it's just that Exception.args is special.

BaseException.args is documented to be a tuple, and in Python 2, exception objects support slicing:

>>> ex = Exception(1, 2)
>>> ex.args
(1, 2)
>>> ex[0]
1

Exceptions are also supposed to be immutable; keeping the .args attribute a tuple helps keep them so. Moreover, the __str__ handler for exceptions expects .args to be a tuple, and setting it to something else has led to strange bugs in the past.

share|improve this answer
2  
Is there any technical reason why it is a descriptor? – Rhymoid Jan 7 at 12:28
3  
@Tinctorius: Exceptions are immutable, and args must be too. Moreover, Exception.args is documented to be a tuple. – Martijn Pieters Jan 7 at 12:29
grrrrrrrrrrrr...thank you. Guess ill for loop unpack it then. Unless someone knows a better way....? – Jase Jan 7 at 12:36
1  
+1, but this still rubs me the wrong way a little. I can't find it documented anywhere that it's a descriptor -- Though the documentation that it's a tuple is easy enough to find. It seems to me that there are lots of places in the standard library where a user defined subclass could change the documented type of something. Why should this be special? -- Although, it's probably explicitly stated somewhere. Jython behaves the same way. – mgilson Jan 7 at 12:46
1  
@mgilson: Yup, I agree that this isn't documented very clearly; I haven't yet found anything better than the Exceptions documentation. – Martijn Pieters Jan 7 at 13:26
show 9 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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