diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:09:32 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:09:32 (GMT) |
commit | ec466a15d99cfb120d405db8307f9f4eb31e51d3 (patch) | |
tree | ea2e82c037bd0b9b3fc5b108edeae0bd1122eae3 /Python/compile.c | |
parent | 27da359519522820c86930f957da8563e4f77353 (diff) | |
parent | 553e156921909c22fbc6d3c244d45606a746fa80 (diff) | |
download | cpython-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.c | 8 |
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 |