Victor Stinner be75b8cf23 Issue #25349: Optimize bytes % int
Optimize bytes.__mod__(args) for integere formats: %d (%i, %u), %o, %x and %X.
_PyBytesWriter is now used to format directly the integer into the writer
buffer, instead of using a temporary bytes object.

Formatting is between 30% and 50% faster on a microbenchmark.
2015-10-09 22:43:24 +02:00
..
2013-10-05 16:28:04 -04:00
2015-03-21 09:25:53 +02:00
2015-01-29 14:29:51 +01:00
2015-03-21 09:25:53 +02:00
2014-10-10 11:55:41 +02:00