21-08-2009 o 18:09:02 alex23 <wuwe...@gmail.com> wrote:

Unfortunately, apply() has been removed as a built-in in 3.x.

You can always implement it yourself :)

    def apply(function, args=(), keywords={}):
        return function(*args, **keywords)

--
Jan Kaliszewski (zuo) <z...@chopin.edu.pl>
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to