[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2015-10-02 Thread STINNER Victor
Changes by STINNER Victor : -- resolution: -> out of date status: open -> closed ___ Python tracker ___

[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2015-04-09 Thread STINNER Victor
STINNER Victor added the comment: Serhiy recently worked on MemoryError, maybe he wants to work on this issue? I'm no more interested to work on this issue. -- nosy: +serhiy.storchaka ___ Python tracker rep...@bugs.python.org

[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2015-04-09 Thread R. David Murray
R. David Murray added the comment: Victor, do you still want to champion this, or shall we close it? -- nosy: +r.david.murray ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19835 ___

[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2013-12-01 Thread Alexandre Vassalotti
Changes by Alexandre Vassalotti alexan...@peadrop.com: -- nosy: -alexandre.vassalotti ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19835 ___ ___

[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2013-11-29 Thread STINNER Victor
New submission from STINNER Victor: Under very low memory condition, PyErr_NoMemory() or PyErr_NormalizeException() enters an unlimited loop when the free list of MemoryError becomes empty. I propose to add a MemoryError read-only singleton to fix this corner case. Attributes cannot be

[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2013-11-29 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@gmail.com: -- nosy: +alexandre.vassalotti, pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19835 ___

[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2013-11-29 Thread STINNER Victor
STINNER Victor added the comment: Under very low memory condition, PyErr_NoMemory() or PyErr_NormalizeException() enters an unlimited loop when the free list of MemoryError becomes empty. I got this bug when I worked on the issue #19817 which adds an arbitary limit to memory allocations

[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2013-11-29 Thread Antoine Pitrou
Antoine Pitrou added the comment: Under very low memory condition, PyErr_NoMemory() or PyErr_NormalizeException() enters an unlimited loop when the free list of MemoryError becomes empty. The real question is why the free list becomes empty. Either way, I don't think a read-only singleton

[issue19835] Add a MemoryError singleton to fix an unlimited loop when the memory is exhausted

2013-11-29 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis arfrever@gmail.com: -- nosy: +Arfrever ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19835 ___