diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:07:47 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-10 21:07:47 (GMT) |
commit | 553e156921909c22fbc6d3c244d45606a746fa80 (patch) | |
tree | 82191d25cda6664a4904073064f44cd80b5d4b37 /Python | |
parent | 785273cd84a81a695a2707c0ef48df4f285f8699 (diff) | |
parent | d741a880497b8458ef068c111caa64546166e3ff (diff) | |
download | cpython-553e156921909c22fbc6d3c244d45606a746fa80.zip cpython-553e156921909c22fbc6d3c244d45606a746fa80.tar.gz cpython-553e156921909c22fbc6d3c244d45606a746fa80.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 29b88ff..cbc23aa 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 |