New submission from Kiriakos Vlahos <pyscrip...@gmail.com>: I am the author of PyScripter a popular python IDE (pyscripter.googlecode.com). Following a user report I found out that str(float) occasionally produces wrong results with Python 2.7 and 3.1.
eg. >>> str(38210.0) //wrong '3820:.0' >>> str(37210.0) // correct '37210.0' >>> str(36210.0) //wrong '3620:.0' This only happens with the embedded python engine which uses the pythonxx.dll of the official distribution. It does not happen using the stand alone interpreter of the PyScripter remote engine. The recent changes in Python 3.2a2 fix this issue. Any ideas why the embedded Python would give different results from the stand alone interpreter? ---------- components: Interpreter Core, Windows messages: 117574 nosy: Kiriakos.Vlahos priority: normal severity: normal status: open title: str(float) failure versions: Python 2.7, Python 3.1 _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9980> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com