[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2017-06-08 Thread Stéphane Wirtel
Changes by Stéphane Wirtel : -- pull_requests: +2060 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-10-27 Thread Stefan Krah
Stefan Krah added the comment: Ah, thanks. I was wondering if there was some obscure reason that escaped me. -- ___ Python tracker ___ ___

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-10-27 Thread STINNER Victor
STINNER Victor added the comment: > Victor, could you look at the end of #10241? Starting from 31796b188bec, > many values in _PySys_Init() have 2 references. Why is that required? It was a mistake, it should now be fixed. Nice catch. -- ___ Python

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-10-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5eb00460e6e8 by Victor Stinner in branch 'default': Issue #18520: fix reference leak in _PySys_Init() http://hg.python.org/cpython/rev/5eb00460e6e8 -- ___ Python tracker

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-10-27 Thread Stefan Krah
Stefan Krah added the comment: Victor, could you look at the end of #10241? Starting from 31796b188bec, many values in _PySys_Init() have 2 references. Why is that required? -- nosy: +skrah ___ Python tracker

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-07-23 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- nosy: +jcea ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-07-22 Thread STINNER Victor
STINNER Victor added the comment: I ran my test for more than 30 minutes and I didn't find any interesting bug anymore, so I'm closing the issue. -- resolution: -> fixed status: open -> closed ___ Python tracker

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-07-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset fc718c177ee6 by Victor Stinner in branch 'default': Issue #18520: Add a new PyStructSequence_InitType2() function, same than http://hg.python.org/cpython/rev/fc718c177ee6 New changeset 9b77b3ee6fb8 by Victor Stinner in branch 'default': Issue #18520

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-07-21 Thread STINNER Victor
STINNER Victor added the comment: PyStructSequence_InitTypeWithError() return type is void, whereas it can fail and raise an exception. Can I change the return type, or should I create a new function? -- ___ Python tracker

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-07-21 Thread Roundup Robot
Roundup Robot added the comment: New changeset 276477d5a548 by Victor Stinner in branch 'default': Issue #18520: Fix initsigs(), handle PyOS_InitInterrupts() error http://hg.python.org/cpython/rev/276477d5a548 -- nosy: +python-dev ___ Python tracker

[issue18520] Fixes bugs found by pyfailmalloc during Python initialization

2013-07-21 Thread STINNER Victor
New submission from STINNER Victor: I'm working on a version of pyfailmalloc integrated into CPython to inject memory allocation failures duging Python startup. As expected, I found new bugs. I create this issue to track these bugs and their fix, as I did with the issue #18408. Home page of t