\pythondoc TBrowser

Functionality of constructor and Draw() methods were extended to support interactive
work in the python scripts. If extra block parameter is True, script execution
will be suspended until <space> key pressed by user. Simple example:

\code{.py}
import ROOT

# block until space is pressed
br = ROOT.TBrowser(block = True)

# continue work to load new files

# block here again until space is pressed
br.Draw(block = True)

# continues after <space> is pressed
\endcode
\endpythondoc