On 6 February 2013 14:38, Michael Hanselmann <[email protected]> wrote: > Also make “used” a property. > --- > qa/qa_config.py | 35 +++++++++++++++++++++++------------ > 1 file changed, 23 insertions(+), 12 deletions(-)
> + def Use(self): > + """Marks instance as being in use. > + > + """ > + assert not self._used > + assert self._disk_template is None > + > + self._used = True > + > + return self As for nodes, please don't do this. Bernardo
