ask
ask

Reputation: 19

Python Virtualbox API

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

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

Upvotes: 0

Views: 227

Answers (3)

Jon Cage
Jon Cage

Reputation: 37448

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

Upvotes: 0

F0RR
F0RR

Reputation: 1620

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

Upvotes: 0

Krab
Krab

Reputation: 2148

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.

Upvotes: 3

Related Questions