summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-10 21:09:32 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-10 21:09:32 (GMT)
commitec466a15d99cfb120d405db8307f9f4eb31e51d3 (patch)
treeea2e82c037bd0b9b3fc5b108edeae0bd1122eae3 /Python/compile.c
parent27da359519522820c86930f957da8563e4f77353 (diff)
parent553e156921909c22fbc6d3c244d45606a746fa80 (diff)
downloadcpython-ec466a15d99cfb120d405db8307f9f4eb31e51d3.zip
cpython-ec466a15d99cfb120d405db8307f9f4eb31e51d3.tar.gz
cpython-ec466a15d99cfb120d405db8307f9f4eb31e51d3.tar.bz2
Fixed indentation of Python examples in C comments.
Diffstat (limited to 'Python/compile.c')
-rw-r--r--Python/compile.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 29b88ff..da16b83 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