Tagged Questions

8
votes
2answers
546 views

Finding Functions Defined in a with: Block

Here's some code from Richard Jones' Blog: with gui.vertical: text = gui.label('hello!') items = gui.selection(['one', 'two', 'three']) with gui.button('click me!'): def ...
5
votes
4answers
613 views

RAII in Python - automatic destruction when leaving a scope

I've been trying to find RAII in Python. Resource Allocation Is Initialization is a pattern in C++ whereby an object is initialized as it is created. If it fails, then it throws an exception. In this ...