- 15 Ock, 2018 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Add _Py_GetLocaleconvNumeric() function: decode decimal_point and thousands_sep fields of localeconv() from the LC_NUMERIC encoding, rather than decoding from the LC_CTYPE encoding. * Modify locale.localeconv() and "n" formatter of str.format() (for int, float and complex to use _Py_GetLocaleconvNumeric() internally.
-
- 15 Eki, 2017 1 kayıt (commit)
-
-
Dargor yazdı
Patch by Pablo.
-
- 15 Eyl, 2017 1 kayıt (commit)
-
-
Barry Warsaw yazdı
* Add Py_UNREACHABLE() as an alias to abort(). * Use Py_UNREACHABLE() instead of assert(0) * Convert more unreachable code to use Py_UNREACHABLE() * Document Py_UNREACHABLE() and a few other macros.
-
- 21 Agu, 2017 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 14 Eyl, 2016 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
- 10 Eyl, 2016 2 kayıt (commit)
-
-
Benjamin Peterson yazdı
-
Eric V. Smith yazdı
-
- 07 Eyl, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 30 Agu, 2016 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 29 Agu, 2016 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
numbers. Patch by Stefan Behnel.
-
- 08 May, 2016 1 kayıt (commit)
-
-
Martin Panter yazdı
-
- 25 Ara, 2015 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
-
- 16 Nis, 2014 1 kayıt (commit)
-
-
Eric V. Smith yazdı
Close issue #8931: Make alternate formatting for 'c' raise an exception. Patch by Torsten Landschoff.
-
- 15 Nis, 2014 2 kayıt (commit)
-
-
Vinay Sajip yazdı
-
Eric V. Smith yazdı
Closed issue #8931: Make alternate formatting for 'c' raise an exception. Patch by Torsten Landschoff.
-
- 14 Nis, 2014 1 kayıt (commit)
-
-
Eric V. Smith yazdı
-
- 19 Kas, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 27 Agu, 2013 1 kayıt (commit)
-
-
Serhiy Storchaka yazdı
error messages and comments.
-
- 24 Haz, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 23 Haz, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
complex.__format__().
-
- 16 May, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 07 May, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
compare two Unicode kinds
-
- 03 Nis, 2013 1 kayıt (commit)
-
-
Victor Stinner yazdı
when possible
-
- 01 Eki, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
- Use _PyLong_FormatWriter() instead of formatlong() when possible, to avoid a temporary buffer - Enable the fast path when width is smaller or equals to the length, and when the precision is bigger or equals to the length - Add unit tests! - formatlong() uses PyUnicode_Resize() instead of _PyUnicode_FromASCII() to resize the output string
-
- 06 Eyl, 2012 1 kayıt (commit)
-
-
Stefan Krah yazdı
-
- 09 Agu, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 25 Haz, 2012 1 kayıt (commit)
-
-
Brett Cannon yazdı
Found by Clang's static analyzer.
-
- 21 Haz, 2012 1 kayıt (commit)
-
-
doko@ubuntu.com yazdı
-
- 16 Haz, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 29 May, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
* Formatting string, int, float and complex use the _PyUnicodeWriter API. It avoids a temporary buffer in most cases. * Add _PyUnicodeWriter_WriteStr() to restore the PyAccu optimization: just keep a reference to the string if the output is only composed of one string * Disable overallocation when formatting the last argument of str%args and str.format(args) * Overallocation allocates at least 100 characters: add min_length attribute to the _PyUnicodeWriter structure * Add new private functions: _PyUnicode_FastCopyCharacters(), _PyUnicode_FastFill() and _PyUnicode_FromASCII() The speed up is around 20% in average.
-
- 23 Nis, 2012 2 kayıt (commit)
-
-
Victor Stinner yazdı
-
Benjamin Peterson yazdı
-
- 24 Şub, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 23 Şub, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
* 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
-
- 31 Ock, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 23 Ock, 2012 2 kayıt (commit)
-
-
Amaury Forgeot d'Arc yazdı
-
Amaury Forgeot d'Arc yazdı
-
- 21 Ock, 2012 1 kayıt (commit)
-
-
Victor Stinner yazdı
-
- 20 Ock, 2012 1 kayıt (commit)
-
-
Eric V. Smith yazdı
-
- 12 Ock, 2012 1 kayıt (commit)
-
-
Benjamin Peterson yazdı
-