diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:06:39 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:06:39 (GMT) |
commit | d741a880497b8458ef068c111caa64546166e3ff (patch) | |
tree | 420566f184821407b3fe48e2c47fe3769657a8ff /Python | |
parent | 6250df81bfbe567bb12c6dc29af149c62f35afa6 (diff) | |
download | cpython-d741a880497b8458ef068c111caa64546166e3ff.zip cpython-d741a880497b8458ef068c111caa64546166e3ff.tar.gz cpython-d741a880497b8458ef068c111caa64546166e3ff.tar.bz2 |
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 77d9f4c..686510c 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 |