Paul Rubin <http://[EMAIL PROTECTED]> writes: > def dhms(m,t): > if not t: return (m,) > return rl(m//t[0], t[1:]) + (m % t[0],)
Editing error, sigh. Meant of course to say > return dhms(m//t[0], t[1:]) + (m % t[0],) -- http://mail.python.org/mailman/listinfo/python-list