]> granicus.if.org Git - python/commitdiff
Issue #13889: Merge fix from 3.2.
authorMark Dickinson <mdickinson@enthought.com>
Sun, 15 Apr 2012 14:12:37 +0000 (15:12 +0100)
committerMark Dickinson <mdickinson@enthought.com>
Sun, 15 Apr 2012 14:12:37 +0000 (15:12 +0100)
1  2 
Include/pyport.h
Misc/NEWS

Simple merge
diff --cc Misc/NEWS
index b8202c4fe4706ee834a184a9d41b9cea9adf9167,b045742195ab21e58d83be2d353ac4c25720654e..a476b417b5fc9f68143270693a750b80d8cdbda8
+++ b/Misc/NEWS
@@@ -10,12 -10,10 +10,16 @@@ What's New in Python 3.3.0 Alpha 3
  Core and Builtins
  -----------------
  
+ - Issue #13889: Check and (if necessary) set FPU control word before calling
+   any of the dtoa.c string <-> float conversion functions, on MSVC builds of
+   Python.  This fixes issues when embedding Python in a Delphi app.
 +- Issue #2377: Make importlib the implementation of __import__().
 +
 +- Issue #1559549: ImportError now has 'name' and 'path' attributes that are set
 +  using keyword arguments to its constructor. They are currently not set by
 +  import as they are meant for use by importlib.
 +
  - Issue #14474: Save and restore exception state in thread.start_new_thread()
    while writing error message if the thread leaves a unhandled exception.