64bit really fixed now, does need PYEXT to be defined tho.

This commit is contained in:
Lieuwe 2011-03-15 20:09:23 +01:00
parent 34051303cf
commit fe5e4a6ddc
3 changed files with 5 additions and 1 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -3652,6 +3652,10 @@ int main(int argc, char *argv[])
}
SDL_CloseAudio();
http_done();
PyRun_SimpleString("import os,tempfile,os.path\ntry:\n os.remove(os.path.join(tempfile.gettempdir(),'tpt_console.py'))\nexcept:\n pass");
PyRun_SimpleString("import os,tempfile,os.path\ntry:\n os.remove(os.path.join(tempfile.gettempdir(),'tpt_console.pyo'))\nexcept:\n pass");
PyRun_SimpleString("import os,tempfile,os.path\ntry:\n os.remove(os.path.join(tempfile.gettempdir(),'tpt_console.pyc'))\nexcept:\n pass");
Py_Finalize();//cleanup any python stuff.
return 0;
}