vote up 5 vote down star
5

What are all the special (magic) methods in Python? The __xxx__ methods, that is.

I'm often looking for a way to override something which I know is possible to do through one of these methods, but I'm having a hard time to find how since as far as I can tell there is no definitive list of these methods, PLUS their names are not really Google friendly. So I think having a list of those here on SO would be a good idea.

flag

3  
this should prolly be wiki. – Victor Jul 7 at 6:10
5  
These are often called "magic methods." That might help with google. – balpha Jul 7 at 6:10
@balpha Fixed, thanks. – ibz Jul 7 at 6:29
2  
"Magic"? Where'd you get that? The Python documentation calls them "special method names". I've never seen them called "magic". Where did you see that? – S.Lott Jul 7 at 12:51

4 Answers

vote up 14 vote down check

At the python level, most of them are documented in the language reference. At the C level, you can find it under the object protocol section (strictly speaking, you only have a subset here, though).

link|flag
+1: Every single one, clearly listed. Google "Python Special Method Names" and you get 700,000 reponses starting with section 3. of the Language Reference. – S.Lott Jul 7 at 12:53
vote up 6 vote down

This page lists all the "underscore" methods:

http://www.siafoo.net/article/57

It's a handy reference.

link|flag
vote up 1 vote down

Python Quick Reference Card has a somewhat comprehensive list of those scattered across it.

link|flag
Unfortunately it doesn't appear to have been updated since Python 2.4. – Scott Griffiths Jul 9 at 14:02
I don't think they've changed very much. – lhahne Jul 10 at 6:34
vote up 0 vote down

Michael Foord wrote about them in its IronPython in Action.
The appendix with that reference is available online and while focusing on IronPython, is valuable for CPython users as well.

link|flag

Your Answer

Get an OpenID
or

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