diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:06:27 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:06:27 (GMT) |
commit | f0aa88f6e856710c4cf5bdb23a81817a841c4553 (patch) | |
tree | 23fa8c9d4d5f27eff0879db451848465a9faeb57 /Python/compile.c | |
parent | e1076aa4e2fc164a908fc4a7e775ccf57c32c2c4 (diff) | |
download | cpython-f0aa88f6e856710c4cf5bdb23a81817a841c4553.zip cpython-f0aa88f6e856710c4cf5bdb23a81817a841c4553.tar.gz cpython-f0aa88f6e856710c4cf5bdb23a81817a841c4553.tar.bz2 |
Fixed indentation of Python examples in C comments.
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/compile.c b/Python/compile.c index 1f59c8c..e871d38 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -2931,9 +2931,9 @@ expr_constant(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) exit(*exc) */ static int |