Message117646
| Author |
skrah |
| Recipients |
Kiriakos.Vlahos, brian.curtin, eric.smith, mark.dickinson, sjmachin, skrah |
| Date |
2010年09月29日.19:18:29 |
| SpamBayes Score |
2.536693e-12 |
| Marked as misclassified |
No |
| Message-id |
<1285787911.42.0.182904982724.issue9980@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
I can reproduce this using the internal (embedded python) of PyScripter
(nice work BTW!).
I can't reproduce it under any other circumstances. The test case
from #9215 runs fine in VS, and also this produces the correct output:
#include <Python.h>
int
main(int argc, char *argv[])
{
Py_Initialize();
PyRun_SimpleString("print str(38210.0)");
Py_Finalize();
return 0;
}
I ran all tests with the x86 release of 2.7. |
|