1. 26 Feb, 2012 13 commits
  2. 25 Feb, 2012 13 commits
  3. 24 Feb, 2012 13 commits
  4. 23 Feb, 2012 1 commit
    • Victor Stinner's avatar
      Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator · 41a863cb
      Victor Stinner authored
       * Decode thousands separator and decimal point using PyUnicode_DecodeLocale()
         (from the locale encoding), instead of decoding them implicitly from latin1
       * Remove _PyUnicode_InsertThousandsGroupingLocale(), it was not used
       * Change _PyUnicode_InsertThousandsGrouping() API to return the maximum
         character if unicode is NULL
       * Replace MIN/MAX macros by Py_MIN/Py_MAX
       * stringlib/undef.h undefines STRINGLIB_IS_UNICODE
       * stringlib/localeutil.h only supports Unicode
      41a863cb