From: Sean O'Halpin Date: 2005-10-21T23:57:35+09:00 Subject: Re: A comparison by example of keyword argument styles On 10/21/05, David A. Black wrote: > I expect to be "allowed" to rename my parameters at will without > breaking any calling code. I'd even expect to be allowed to change, > say, (a,b,*c) to *args if I felt there was a good reason to. I'm with you on this David. I find myself doing (a,b,*args) => (*args) quite often. Regards, Sean