[Python-checkins] CVS: python/dist/src/Misc python-mode.el

Barry A. Warsaw bwarsaw@cnri.reston.va.us
Mon, 24 May 1999 14:37:59 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Misc
In directory anthem:/projects/python/develop/bwarsaw/src/Misc

Modified Files:
	python-mode.el 
Log Message:
(py-statement-closes-block-p): Add a py-goto-initial-line which fixes
indentation when the return value is a multiline sexp:

def bug():
    try:
        if 2>1:
            return (11+
                    12)
        
        else:   #XXX
            return 12
    except:
        return 13