diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-19 04:10:09 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-04-19 04:10:09 (GMT) |
commit | 1b6424fc4bda9df0c48dfd308b236ae3704a01b4 (patch) | |
tree | 1392fb18702a45610bc7ed75501728525909b546 /Python | |
parent | ab5ba7918e07e5f3a7c51119e23803c755534a0d (diff) | |
download | cpython-1b6424fc4bda9df0c48dfd308b236ae3704a01b4.zip cpython-1b6424fc4bda9df0c48dfd308b236ae3704a01b4.tar.gz cpython-1b6424fc4bda9df0c48dfd308b236ae3704a01b4.tar.bz2 |
Fix indentation.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Python/compile.c b/Python/compile.c index 0a8f58e..dd4262c 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -2146,13 +2146,13 @@ compiler_try_except(struct compiler *c, stmt_ty s) /* try: - # body + # body except type as name: - try: - # body - finally: - name = None - del name + try: + # body + finally: + name = None + del name */ /* second try: */ |