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 kayhayen
Recipients kayhayen
Date 2019-04-25.20:28:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1556224107.78.0.397981137362.issue36725@roundup.psfhosted.org>
In-reply-to
Content
Much like #9366 the same file can be used. This reference leaks according to Nuitka comparative testing:

simpleFunction59: FAILED 129511 129512 leaked 1

def simpleFunction59():
    a = 3
    b = 5

    try:
        a = a * 2

        return a
    finally:
        return a / b


I would be guessing, that you are leaking the return value when returning again.
History
Date User Action Args
2019-04-25 20:28:27kayhayensetrecipients: + kayhayen
2019-04-25 20:28:27kayhayensetmessageid: <1556224107.78.0.397981137362.issue36725@roundup.psfhosted.org>
2019-04-25 20:28:27kayhayenlinkissue36725 messages
2019-04-25 20:28:27kayhayencreate