[New-bugs-announce] [issue3651] eval() leaks 1 reference every time

Amaury Forgeot d'Arc report at bugs.python.org
Sat Aug 23 00:09:43 CEST 2008


New submission from Amaury Forgeot d'Arc <amauryfa at gmail.com>:

version 3.0, any call to eval() leaks one reference:

>>> eval('1')
1
[42093 refs]
>>> eval('1')
1
[42094 refs]
>>> eval('1')
1
[42095 refs]
>>> eval('1')
1
[42096 refs]

----------
components: Interpreter Core
messages: 71783
nosy: amaury.forgeotdarc
priority: release blocker
severity: normal
status: open
title: eval() leaks 1 reference every time
versions: Python 3.0

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue3651>
_______________________________________


More information about the New-bugs-announce mailing list