This is basically a question about the lifetime of temporaries. If a function returns an object, but the reference is not assigned to a variable and is only used to call a method on the returned object, is the temporary reference automatically cleared?
To give a concrete example, suppose there is this chain of method calls:
o.method_a().method_b()
Is the temporary reference returned by o.method_a() automatically cleared when the call to method_b() finishes, as if the line were written like:
tmp = o.method_a()
try:
tmp.method_b()
finally:
tmp = None
EDIT: I am interested in a general answer. CPython finalizes objects as soon as the reference count drops to 0. Other Python implementations might not finalize objects immediately. I am wondering if the Python language is like C++, which guarantees that temporary objects are destroyed at the end of the statement for which they were created. (Except that in Python, the question is whether temporary references are cleared at the end of the statement for which they were created.)
In C++, similar code might be implemented with:
class B {
public:
void method_b();
};
class A {
public:
std::shared_ptr<B> method_a();
};
A o;
o.method_a()->method_b();
The C++ standard states "Temporary objects are destroyed as the last step in evaluating the full-expression ... that (lexically) contains the point where they were created. This is true even if that evaluation ends in throwing an exception." In this example, it means that the temporary std::shared_ptr<B> object created by the call to A::method_a() is destroyed immediately at the end of evaluation of the full-expression o.method_a()->method_b();. Destroying a std::shared_ptr means clearing a reference to the shared object.