summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-11 00:09:32 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-11 00:09:32 +0300
commitec466a15d99cfb120d405db8307f9f4eb31e51d3 (patch)
treeea2e82c037bd0b9b3fc5b108edeae0bd1122eae3 /Python
parent27da359519522820c86930f957da8563e4f77353 (diff)
parent553e156921909c22fbc6d3c244d45606a746fa80 (diff)
downloadcpython-git-ec466a15d99cfb120d405db8307f9f4eb31e51d3.tar.gz
Fixed indentation of Python examples in C comments.
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 29b88ff0e3..da16b833bf 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -3630,9 +3630,9 @@ expr_constant(struct compiler *c, expr_ty e)
BLOCK
finally:
if an exception was raised:
- exc = copy of (exception, instance, traceback)
+ exc = copy of (exception, instance, traceback)
else:
- exc = (None, None, None)
+ exc = (None, None, None)
if not (await exit(*exc)):
raise
*/
@@ -3725,9 +3725,9 @@ compiler_async_with(struct compiler *c, stmt_ty s, int pos)
BLOCK
finally:
if an exception was raised:
- exc = copy of (exception, instance, traceback)
+ exc = copy of (exception, instance, traceback)
else:
- exc = (None, None, None)
+ exc = (None, None, None)
exit(*exc)
*/
static int