This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients bkcsfi sfi, malthe, terry.reedy, yselivanov
Date 2015-06-26.19:43:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1435347823.46.0.798285345758.issue24485@psf.upfronthosting.co.za>
In-reply-to
Content
I verified (Win7, but should be irrelevant) that test.py works on 2.7.10 and 3.4.3.  The failure in 3.5.0b2 is omitting the body of inner.  Add another line to inner and both are omitted, so 'body' seems correct  Add another line to outer, and nothing is omitted.

def outer():
    def inner():
        inner1
        inner2
    outer2

is displayed completely.  So the omission is the body of an inner function that is the last statement of outer.  This rule is not recursive, in the sense that for

def outer():
    def middle():
        def inner():
            inner1

"def inner ..." is entirely omitted, not just 'inner1'.  The omission seems specific to 'def' as it does not occur with the other compound statements I tested (if, while).
History
Date User Action Args
2015-06-26 19:43:43terry.reedysetrecipients: + terry.reedy, yselivanov, malthe, bkcsfi sfi
2015-06-26 19:43:43terry.reedysetmessageid: <1435347823.46.0.798285345758.issue24485@psf.upfronthosting.co.za>
2015-06-26 19:43:43terry.reedylinkissue24485 messages
2015-06-26 19:43:43terry.reedycreate