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 | d741a880497b8458ef068c111caa64546166e3ff (patch) | |
tree | 420566f184821407b3fe48e2c47fe3769657a8ff /Python | |
parent | 6250df81bfbe567bb12c6dc29af149c62f35afa6 (diff) | |
download | cpython-git-d741a880497b8458ef068c111caa64546166e3ff.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 |