[PATCH] Add a factory class for our various communications queues.

Chris Lumens clumens at redhat.com
Mon Apr 1 15:27:38 UTC 2013


> > +    def _makeMethod(self, constant, methodName, argc):
> > +        def __method(*args):
> > +            if len(args) != argc:
> > +                raise TypeError("%s() takes exactly %d arguments (%d given)" % (methodName, argc, len(args)))
> Could you please split this line into two? 
> 
> Otherwise this looks good to me.

Done.

- Chris


More information about the anaconda-patches mailing list