diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-06-28 23:06:49 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-06-28 23:06:49 (GMT) |
commit | 6e4856a146be65e9a113c06d336a6ba49b1f8136 (patch) | |
tree | 04a0462c52f729e93918fe27c5fa898b39d51914 | |
parent | 7416a4cd2aed214beae646fc91a11b26aad7c409 (diff) | |
download | cpython-6e4856a146be65e9a113c06d336a6ba49b1f8136.zip cpython-6e4856a146be65e9a113c06d336a6ba49b1f8136.tar.gz cpython-6e4856a146be65e9a113c06d336a6ba49b1f8136.tar.bz2 |
rewrap
-rw-r--r-- | Doc/reference/compound_stmts.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index b983a98..fc49a48 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -46,7 +46,7 @@ Summarizing: compound_stmt: `if_stmt` : | `while_stmt` : | `for_stmt` - : | `try_stmt` + : | `try_stmt : | `with_stmt` : | `funcdef` : | `classdef` @@ -538,10 +538,10 @@ mutable values there can lead to unexpected results. For :term:`new-style class`\es, descriptors can be used to create instance variables with different implementation details. -Class definitions, like function definitions, may be wrapped by one or -more :term:`decorator` expressions. The evaluation rules for the -decorator expressions are the same as for functions. The result must -be a class object, which is then bound to the class name. +Class definitions, like function definitions, may be wrapped by one or more +:term:`decorator` expressions. The evaluation rules for the decorator +expressions are the same as for functions. The result must be a class object, +which is then bound to the class name. .. rubric:: Footnotes |