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 guxianminer
Recipients amaury.forgeotdarc, guxianminer
Date 2009-01-29.03:38:01
SpamBayes Score 3.43254e-08
Marked as misclassified No
Message-id <1233200285.35.0.0178617093253.issue5090@psf.upfronthosting.co.za>
In-reply-to
Content
my compile is gcc 4.2.1
system is windows xp

some other library can be import.
such as:sys os

c++ code line:
    Py_Initialize();
    Py_SetProgramName(L"MyProgram");
    module=PyImport_ImportModule("__main__");
    moduledict=PyModule_GetDict(dodule);
    PySys_SetArgv(1,wxargv);
    PyRun_StringFlags("\
import tkinter\n\
",Py_file_input,moduledict,moduledict,NULL);
Py_finalize();

the urllib.request also can not import.
History
Date User Action Args
2009-01-29 03:38:05guxianminersetrecipients: + guxianminer, amaury.forgeotdarc
2009-01-29 03:38:05guxianminersetmessageid: <1233200285.35.0.0178617093253.issue5090@psf.upfronthosting.co.za>
2009-01-29 03:38:02guxianminerlinkissue5090 messages
2009-01-29 03:38:02guxianminercreate