diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-11 00:06:39 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-11 00:06:39 +0300 |
commit | 488495ff86385a29f86c111c879ebb6e39c66da3 (patch) | |
tree | f0ea22d121e8f84e8f33954bacf1cc0c57c554bf /Python | |
parent | a735f5f5d9cdf15542789202b8d4061ac04a1d3e (diff) | |
download | cpython-488495ff86385a29f86c111c879ebb6e39c66da3.tar.gz |
Fixed indentation of Python examples in C comments.
Diffstat (limited to 'Python')
-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 77d9f4c6cf..686510c52a 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -3330,9 +3330,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) exit(*exc) */ static int |