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 pablogsal
Recipients gvanrossum, lukasz.langa, mark.dickinson, pablogsal, rhettinger, scoder, serhiy.storchaka, steven.daprano
Date 2021-09-21.16:45:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1632242745.3.0.612623685339.issue24076@roundup.psfhosted.org>
In-reply-to
Content
Unfortunately commit debd80403721b00423680328d6adf160a28fbff4 introduced a reference leak:


❯ ./python -m test test_grammar -R :
0:00:00 load avg: 2.96 Run tests sequentially
0:00:00 load avg: 2.96 [1/1] test_grammar
beginning 9 repetitions
123456789
.........
test_grammar leaked [12, 12, 12, 12] references, sum=48
test_grammar failed (reference leak)

== Tests result: FAILURE ==

1 test failed:
    test_grammar

Total duration: 1.1 sec
Tests result: FAILURE

debd80403721b00423680328d6adf160a28fbff4 is the first bad commit
commit debd80403721b00423680328d6adf160a28fbff4
Author: scoder <stefan_ml@behnel.de>
Date:   Tue Sep 21 11:01:18 2021 +0200

    bpo-24076: Inline single digit unpacking in the integer fastpath of sum() (GH-28469)

 .../Core and Builtins/2021-09-20-10-02-12.bpo-24076.ZFgFSj.rst |  1 +
 Python/bltinmodule.c                                           | 10 +++++++++-
 2 files changed, 10 insertions(+), 1 deletion(-)
 create mode 100644 Misc/NEWS.d/next/Core and Builtins/2021-09-20-10-02-12.bpo-24076.ZFgFSj.rst
History
Date User Action Args
2021-09-21 16:45:45pablogsalsetrecipients: + pablogsal, gvanrossum, rhettinger, mark.dickinson, scoder, steven.daprano, lukasz.langa, serhiy.storchaka
2021-09-21 16:45:45pablogsalsetmessageid: <1632242745.3.0.612623685339.issue24076@roundup.psfhosted.org>
2021-09-21 16:45:45pablogsallinkissue24076 messages
2021-09-21 16:45:45pablogsalcreate