Like __getattr__ but with args and kwargs as well

Miki miki.tebeka at gmail.com
Fri May 28 13:41:31 EDT 2010


>         method = getattr(auths[0], method_name, None)
Should be
        fn = getattr(auths[0], method_name, None)




More information about the Python-list mailing list