Changes between Initial Version and Version 2 of Ticket #1322


Ignore:
Timestamp:
08/27/16 18:55:26 (8 years ago)
Author:
sjamaan
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1322

    • Property Component changed from unknown to core libraries
  • Ticket #1322 – Description

    initial v2  
    2323
    2424Parsing floating-point numbers in C is going to be pretty damn tricky, so we might just try and use `setlocale()` to set the locale to `C` and restore it to whatever it was before after doing so.  I have no idea what the effects are of calling these functions often in the same program, and if there's a performance impact (it might be loading the strings or formatting rules for this locale every single time, on the fly, since it'll be designed for "normal" programs in which `setlocale()` will be called only a handful of times)
     25
     26See also https://github.com/JuliaLang/julia/pull/5988 for example