commit before processing descriptors

This commit is contained in:
David Halter
2012-06-12 01:13:06 +02:00
parent 8fb1dc74a5
commit c1fc527d60
3 changed files with 5 additions and 22 deletions

View File

@@ -43,13 +43,13 @@ for a4, (b4, c4) in (1,("", list)), (1,("", list)):
# -----------------
with open('') as f:
##? ['closed']
#? ['closed']
f.closed
with open('') as f1, open('') as f2:
##? ['closed']
#? ['closed']
f1.closed
##? ['closed']
#? ['closed']
f2.closed

View File

@@ -187,5 +187,5 @@ class B():
def r(self, value):
pass
##? []
#? []
B().r()