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 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.
History
Date User Action Args
2010-09-29 19:18:31skrahsetrecipients: + skrah, sjmachin, mark.dickinson, eric.smith, brian.curtin, Kiriakos.Vlahos
2010-09-29 19:18:31skrahsetmessageid: <1285787911.42.0.182904982724.issue9980@psf.upfronthosting.co.za>
2010-09-29 19:18:29skrahlinkissue9980 messages
2010-09-29 19:18:29skrahcreate