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 palm.kevin
Recipients barry, eric.araujo, georg.brandl, ned.deily, palm.kevin, pitrou, srid, tarek
Date 2011-02-25.13:58:45
SpamBayes Score 0.00035522322
Marked as misclassified No
Message-id <1298642326.84.0.169634255431.issue10743@psf.upfronthosting.co.za>
In-reply-to
Content
Please find here a small C app embedding python that shows  how to reproduce the problem (It turned out that the problem is caused by the new method "Py_SetPath"): 

#include "Python.h"

main(int argc, char **argv)
{
  Py_SetPath(Py_GetPath());
  printf("Init\n");
  Py_Initialize();
  printf("-- END\n");
}


--> Python crashes on Py_Initialize... only if the Py_SetPath is executed...
History
Date User Action Args
2011-02-25 13:58:46palm.kevinsetrecipients: + palm.kevin, barry, georg.brandl, pitrou, tarek, ned.deily, eric.araujo, srid
2011-02-25 13:58:46palm.kevinsetmessageid: <1298642326.84.0.169634255431.issue10743@psf.upfronthosting.co.za>
2011-02-25 13:58:45palm.kevinlinkissue10743 messages
2011-02-25 13:58:45palm.kevincreate