From af09b60aac4331c6ebc48eac9c728b8ca0a838b1 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Thu, 17 Sep 2009 07:49:37 +0000 Subject: [PATCH] #6912: add "with" block support to pindent. --- Tools/scripts/pindent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/scripts/pindent.py b/Tools/scripts/pindent.py index ec440d14fb3..7bfc4153d2e 100755 --- a/Tools/scripts/pindent.py +++ b/Tools/scripts/pindent.py @@ -88,10 +88,10 @@ next = {} next['if'] = next['elif'] = 'elif', 'else', 'end' next['while'] = next['for'] = 'else', 'end' next['try'] = 'except', 'finally' -next['except'] = 'except', 'else', 'end' +next['except'] = 'except', 'else', 'finally', 'end' next['else'] = next['finally'] = next['def'] = next['class'] = 'end' next['end'] = () -start = 'if', 'while', 'for', 'try', 'def', 'class' +start = 'if', 'while', 'for', 'try', 'with', 'def', 'class' class PythonIndenter: