|
Original |
Translation |
|
1157
|
Why doesn't os.popen()/win32pipe.popen() work on Win9x?
|
|
|
1158
|
There is a bug in Win9x that prevents os.popen/win32pipe.popen* from working. The good news is there is a way to work around this problem. The Microsoft Knowledge Base article that you need to lookup is: Q150956. You will find links to the knowledge base at: http://support.microsoft.com/.
|
|
|
1159
|
PyRun_SimpleFile() crashes on Windows but not on Unix; why?
|
|
|
1160
|
This is very sensitive to the compiler vendor, version and (perhaps) even options. If the FILE* structure in your embedding program isn't the same as is assumed by the Python interpreter it won't work.
|
|
|
1161
|
|
1162
|
If you can't change compilers or flags, try using :cfunc:`Py_RunSimpleString`. A trick to get it to run an arbitrary file is to construct a call to :func:`execfile` with the name of your file as argument.
|
|
|
1163
|
Also note that you can not mix-and-match Debug and Release versions. If you wish to use the Debug Multithreaded DLL, then your module *must* have an "_d" appended to the base name.
|
|
|
1164
|
Importing _tkinter fails on Windows 95/98: why?
|
|
|
1165
|
Sometimes, the import of _tkinter fails on Windows 95 or 98, complaining with a message like the following::
|
|
|
1166
|
ImportError: DLL load failed: One of the library files needed to run this application cannot be found.
|
|