tags:

views:

35

answers:

3

http://enomalism.com/api/pyvb/pyvb.vm.vbVM-class.html

there is a parameter **kw in init(self, **kw) what is it?

+3  A: 

A dictionary of arbitrary keyword arguments. See http://docs.python.org/tutorial/controlflow.html#keyword-arguments

If it really is a question about that concrete API, then please excuse me, I was typing faster than thinking.

Krab
A: 

**kw is short for **kwargs. Additional named aguments.

F0RR
A: 

Looks like it's a dictionary of options from the source?

Jon Cage