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 way, the programmer knows that the object will never be left in a half-constructed state. Python can do this much.
But RAII also works with the scoping rules of C++ to ensure the prompt destruction of the object. As soon as the variable pops off the stack it is destroyed. This may happen in Python, but only if there are no external or circular references.
More importantly, a name for an object still exists until the function it is in exits (and sometimes longer). Variables at the module level will stick around for the life of the module.
I'd like to get an error if I do something like this:
for x in some_list:
...
... 100 lines later ...
for i in x:
# Oops! Forgot to define x first, but... where's my error?
...
I could manually delete the names after I've used it, but that would be quite ugly, and require effort on my part.
And I'd like it to Do-What-I-Mean in this case:
for x in some_list:
surface = x.getSurface()
new_points = []
for x,y,z in surface.points:
... # Do something with the points
new_points.append( (x,y,z) )
surface.points = new_points
x.setSurface(surface)
Python does some scoping, but not at the indentation level, just at the functional level. It seems silly to require that I make a new function just to scope the variables so I can reuse a name.
Python 2.5 has the "with" statment
but that requires that I explicitly put in __enter__ and __exit__ functions
and generally seems more oriented towards cleaning up resources like files
and mutex locks regardless of the exit vector. It doesn't help with scoping.
Or am I missing something?
I've searched for "Python RAII" and "Python scope" and I wasn't able to find anything that addressed the issue directly and authoritatively. I've looked over all the PEPs. The concept doesn't seem to be addressed within Python.
Am I a bad person because I want to have scoping variables in Python? Is that just too un-Pythonic?
Am I not grokking it?
Perhaps I'm trying to take away the benefits of the dynamic aspects of the language. Is it selfish to sometimes want scope enforced?
Am I lazy for wanting the compiler/interpreter to catch my negligent variable reuse mistakes? Well, yes, of course I'm lazy, but am I lazy in a bad way?
withstatement (I'm actually surprised that acronym didn't make it into PEP 343 - it was certainly thrown around a lot in the associated discussions). The missing element you're asking for is the anonymous scoping rules from C/C++ and no, Python doesn't have those (although you may find the deferred PEP 3150 of interest). That's completely independent of the RAII question, though. – ncoghlan Feb 21 '11 at 22:10withis that the name doesn't go away, and that I have to move code into__exit__instead of__del__. Perhaps there is a clever wrapper object that woulddelthe object name and not require that I code an__exit__function? Ideally it would assert that the ref count was 0. – markets Feb 21 '11 at 23:13delthe object name from your own scope and get rid of the name - this is totally separate from actually destroying the object. For instance, if an object had been inserted into a container, its refcount would be > 0, but you could stilldelthe name you used to refer to the object itself. Maybe that's part of your confusion -deldeletes the name, not the underlying object. This is one distinction in Python that C/C++ people struggle with - you are dealing with names and bindings to names, not variables/references that are alloc'ed and freed. – Paul McGuire Feb 22 '11 at 15:55