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.

classification
Title: Python-2.5 segfault with tktreectrl
Type: Stage:
Components: None Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: klappnase, loewis
Priority: normal Keywords:

Created on 2007-01-16 18:46 by klappnase, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg31046 - (view) Author: klappnase (klappnase) * Date: 2007-01-16 18:46
Python-2.5 segfaults when using the tktreectrl widget.
As Anton Hartl pointed out (see http://groups.google.com/group/comp.lang.python/browse_thread/thread/37536988c8499708/aed1d725d8e84ed8?lnk=raot#aed1d725d8e84ed8) this is because both Python-2.5 and tktreectrl use a global symbol "Ellipsis". Changing "Ellipsis" in ast.c and Python-ast.c into something like "PyAst_Ellipsis" fixes this.
msg31047 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2007-01-19 06:43
Thanks for the report. Fixed in 53489 and 53490.
History
Date User Action Args
2022-04-11 14:56:22adminsetgithub: 44474
2007-01-16 18:46:21klappnasecreate