Gregory Petrosyan wrote:
> Bruno: in your original example, how can it be specified that image
> should be placed before text? Of course, it  *can*  be done with one
> extra level of wrapping of gui elements in list... did you mean that?

Yes. That's a pretty straightforward translation of the real Python's
object structure:

class Window(...):
  def __init__(self):
    self._widgets = []

=>

window = {
  'widgets' : [],
}

-- 
bruno desthuilliers
python -c "print '@'.join(['.'.join([w[::-1] for w in p.split('.')]) for
p in '[EMAIL PROTECTED]'.split('@')])"
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to