diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-11 00:07:47 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-11 00:07:47 +0300 |
commit | 9077d33545026f725bf00e1632440b5974aff51e (patch) | |
tree | 45b09e9c13323609dea3a1d9264f0b89d5647ace /Python/compile.c | |
parent | 95f57d0e95e3f178b10b5b89b9906f8832b2c52b (diff) | |
parent | 488495ff86385a29f86c111c879ebb6e39c66da3 (diff) | |
download | cpython-9077d33545026f725bf00e1632440b5974aff51e.tar.gz |
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 29b88ff0e3..cbc23aa209 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -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 |