ynonp / python-examples-verint-2016-07

Python examples and exercises
MIT License
2 stars 35 forks source link

#3 #215

Open HananRosenthal opened 8 years ago

HananRosenthal commented 8 years ago

What is the purpose of "_all.build()" ?

ynonp commented 8 years ago

_all.build() starts the process:

Each widget depends on other widgets to build. Building a widget should call build on all of its dependencies.

The widget named _all depends on all other widgets, so when building it is equivalent to calling build on each individual widget. That's what's causing the print in the next line.