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 tim.peters
Recipients
Date 2004-10-26.02:50:45
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=31435

Confirmed the segfault with current Python CVS.  Boosted 
priority to the maximum.  Assigned to Raymond, since he 
probably knows most about this.

Dies in tuple_of_constants(), n=1, i=0, on the incref here:

for (i=0 ; i<n ; i++) {
	arg = GETARG(codestr, (i*3));
	constant = PyList_GET_ITEM(consts, arg);
	Py_INCREF(constant);  *** HERE ***
	PyTuple_SET_ITEM(newconst, i, constant);
}

constant is a NULL pointer at the time.
History
Date User Action Args
2007-08-23 14:27:03adminlinkissue1053819 messages
2007-08-23 14:27:03admincreate