Files
cpython/Objects
Victor Stinner 621ef3d84f Issue #15609: Optimize str%args for integer argument
- 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
2012-10-02 00:33:47 +02:00
..
2012-05-01 09:51:46 -04:00
2012-09-20 21:30:34 +01:00
2012-09-28 16:43:40 +03:00
2012-09-29 13:47:39 -04:00