[New-bugs-announce] [issue36725] Reference leak regression with Python3.8a3

Kay Hayen report at bugs.python.org
Thu Apr 25 16:28:27 EDT 2019


New submission from Kay Hayen <kay.hayen at gmail.com>:

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.

----------
messages: 340861
nosy: kayhayen
priority: normal
severity: normal
status: open
title: Reference leak regression with Python3.8a3
type: resource usage
versions: Python 3.8

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue36725>
_______________________________________


More information about the New-bugs-announce mailing list