kwds

  1. R

    Python: why it worked later, function keywords:

    The following code didn't work: class X(object): def f(self, **kwds): print kwds try: print kwds['i'] * 2 except KeyError: print "unknown keyword argument"...
Top Bottom