Possible Duplicate:
What does ** (double star) and * (star) do for python parameters?
I am reading some code that been generated by ZSI for python. There is a line like this
def verifyVehicle(self, request, **kw):
....
I want to know what does this **kw neams. Is this neam a dictionary type? Thanks