Issue43187
Created on 2021-02-10 09:19 by CharlesFengY, last changed 2022-04-11 14:59 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg386765 - (view) | Author: Yang Feng (CharlesFengY) | Date: 2021-02-10 09:19 | |
In the following programs, dict is created in recursive calls. Then a core dump is reported by Python interpreter.
+++++++++++++++++++++++++++++++++++++++++++
def test_equal_operator_modifying_operand():
class X():
def __del__(DictTest):
dict_b.clear()
def __eq__(DictTest, other):
dict_a.clear()
return True
def __hash__(DictTest):
return 13
dict_d = {X(): 0}
class Y():
def __eq__(DictTest, other):
dict_d.clear()
return True
dict_d = {0: Y()}
# dict_c = {0: set()}
test_equal_operator_modifying_operand()
test_equal_operator_modifying_operand()
+++++++++++++++++++++++++++++++++++++++++
|
|||
| msg401331 - (view) | Author: Irit Katriel (iritkatriel) * ![]() |
Date: 2021-09-07 19:20 | |
On 3.9 I reproduce the segfault. On 3.11 on a mac I get RecursionError: maximum recursion depth exceeded while calling a Python object So it has been fixed in the meantime. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022-04-11 14:59:41 | admin | set | github: 87353 |
| 2021-09-07 19:20:32 | iritkatriel | set | status: open -> closed nosy:
+ iritkatriel resolution: out of date |
| 2021-02-10 09:19:35 | CharlesFengY | create | |
