Move the __enter__ call out of the try suite. I was nuts putting it
inside.
This commit is contained in:
parent
cc6ea270d6
commit
22bae2bbd0
|
@ -160,8 +160,8 @@ Specification
|
||||||
abc = EXPR
|
abc = EXPR
|
||||||
exc = (None, None, None)
|
exc = (None, None, None)
|
||||||
try:
|
try:
|
||||||
|
VAR = abc.__enter__()
|
||||||
try:
|
try:
|
||||||
VAR = abc.__enter__()
|
|
||||||
BLOCK
|
BLOCK
|
||||||
except:
|
except:
|
||||||
exc = sys.exc_info()
|
exc = sys.exc_info()
|
||||||
|
|
Loading…
Reference in New Issue