Roundup Tracker - Issues

Message3655

Author loewis
Recipients loewis, richard, stefan
Date 2009-03-17.07:41:55
Message-id <1237275716.21.0.604369944662.issue2550505@psf.upfronthosting.co.za>
In-reply-to
> I'd propose this fix:
> > 
> > -            args = args + v
> > +            args = args + [x for x in search_matches]
> > 
> > as the intention of the original patch was to use 'in' so any container 
> > type would be possible. Richard, how does this look ?

If it is ok, I think there are a few less complicated spellings, such
as

   args = args + list(search_matches)
   args.extend(search_matches)
History
Date User Action Args
2009-03-17 07:41:56loewissetmessageid: <1237275716.21.0.604369944662.issue2550505@psf.upfronthosting.co.za>
2009-03-17 07:41:56loewissetrecipients: + loewis, richard, stefan
2009-03-17 07:41:56loewislinkissue2550505 messages
2009-03-17 07:41:55loewiscreate