为什么在with块的末尾调用__del__?

时间:2015-10-06 16:30:03

标签: python mysql-python with-statement

with语句中创建的变量范围超出with块(请参阅:Variable defined with with-statement available outside of with-block?)。但是当我运行以下代码时:

class Foo:
    def __init__(self):
        print "__int__() called."

    def __del__(self):
        print "__del__() called."

    def __enter__(self):
        print "__enter__() called."
        return "returned_test_str"

    def __exit__(self, exc, value, tb):
        print "__exit__() called."

    def close(self):
        print "close() called."

    def test(self):
        print "test() called."

if __name__ == "__main__":
    with Foo() as foo:
        print "with block begin???"
        print "with block end???"

    print "foo:", foo  # line 1

    print "-------- Testing MySQLdb -----------------------"
    with MySQLdb.Connect(host="xxxx", port=0, user="xxx", passwd="xxx", db="test") as my_curs2:
        print "(1)my_curs2:", my_curs2
        print "(1)my_curs2.connection:", my_curs2.connection
    print "(2)my_curs2.connection:", my_curs2.connection
    print "(2)my_curs2.connection.open:", my_curs2.connection.open  # line 2

输出显示在打印foo之前调用Foo.__del__(上面# line 1处):

__int__() called.
__enter__() called.
with block begin???
with block end???
__exit__() called.
__del__() called.
foo: returned_test_str
-------- Testing MySQLdb -----------------------
(1)my_curs2: <MySQLdb.cursors.Cursor object at 0x7f16dc95b290>
(1)my_curs2.connection: <_mysql.connection open to 'xxx' at 2609870>
(2)my_curs2.connection: <_mysql.connection open to 'xxx' at 2609870>
(2)my_curs2.connection.open: 1

我的问题是,如果Foo.__del__语句没有创建新的执行范围,为什么在这里调用with

此外,如果在第二个__del__区块中调用了连接的with方法,我就不明白为什么my_curs1.connection之后仍处于打开状态(请参阅{上面{1}}。

1 个答案:

答案 0 :(得分:4)

请注意foo不是Foo类型的对象,这一点非常重要。您确实创建了Foo并需要保留它,因为它可能包含调用__exit__所需的状态信息。但是一旦完成,对象就不再需要了,而且Python可以自由地抛弃它。

换句话说,这个:

with Foo() as foo:
    print ('Hello World!')

与此相同:

_bar = Foo()
foo = _bar.__enter__()
print ('Hello World!')
_bar.__exit__()
del _bar # This will call __del__ because _bar is the only reference

如果foo是对with区块foo的引用,则会发生您期望的行为。例如......

class Foo:
    def __init__(self):
        print ("__int__() called.")

    def __del__(self):
        print ("__del__() called.")

    def __enter__(self):
        print ("__enter__() called.")
        return self # foo now stores the Foo() object

    def __str__(self):
        return 'returned_test_str'

    def __exit__(self, exc, value, tb):
        print ("__exit__() called.")

    def close(self):
        print ("close() called.")

    def test(self):
        print ("test() called.")

if __name__ == "__main__":
    with Foo() as foo:
        print ("with block begin???")
        print ("with block end???")

    print ("foo:", foo)  # line 1

打印

__int__() called.
__enter__() called.
with block begin???
with block end???
__exit__() called.
foo: returned_test_str
__del__() called.

我不知道为什么Connection.__exit__会打开游标。

相关问题