Skip to content

Commit f7b273d

Browse files
committed
Remove unnecessary comments
1 parent be1aa18 commit f7b273d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/reference/compound_stmts.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ The execution of the :keyword:`with` statement with one "item" proceeds as follo
398398

399399
#. The context expression (the expression given in the :token:`with_item`) is
400400
evaluated to obtain a context manager.
401-
401+
402402
#. The context manager's :meth:`__enter__` is loaded for later use.
403403

404404
#. The context manager's :meth:`__exit__` is loaded for later use.
@@ -446,7 +446,7 @@ is semantically equivalent to::
446446
hit_except = False
447447

448448
try:
449-
target = value # only if `as target` is present in the with statement
449+
target = value
450450
suite
451451
except:
452452
hit_except = True
@@ -849,7 +849,7 @@ is semantically equivalent to::
849849
hit_except = False
850850

851851
try:
852-
target = value # only if `as target` is present in the with statement
852+
target = value
853853
suite
854854
except:
855855
hit_except = True

0 commit comments

Comments
 (0)