File tree 1 file changed +3
-3
lines changed 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -398,7 +398,7 @@ The execution of the :keyword:`with` statement with one "item" proceeds as follo
398
398
399
399
#. The context expression (the expression given in the :token: `with_item `) is
400
400
evaluated to obtain a context manager.
401
-
401
+
402
402
#. The context manager's :meth: `__enter__ ` is loaded for later use.
403
403
404
404
#. The context manager's :meth: `__exit__ ` is loaded for later use.
@@ -446,7 +446,7 @@ is semantically equivalent to::
446
446
hit_except = False
447
447
448
448
try:
449
- target = value # only if `as target` is present in the with statement
449
+ target = value
450
450
suite
451
451
except:
452
452
hit_except = True
@@ -849,7 +849,7 @@ is semantically equivalent to::
849
849
hit_except = False
850
850
851
851
try:
852
- target = value # only if `as target` is present in the with statement
852
+ target = value
853
853
suite
854
854
except:
855
855
hit_except = True
You can’t perform that action at this time.
0 commit comments