Does Python have extension methods like C#? Is it possible to call a method like:
MyRandomMethod()
on existing types like int?
int
I've had great luck with the method described here:
http://mail.python.org/pipermail/python-dev/2008-January/076194.html
I have no idea if it works on builtins though.