mirror of
https://github.com/python/cpython.git
synced 2026-05-07 21:20:55 -04:00
d7e64337ef
When you use `'%s' % SubClassOfStr()`, where `SubClassOfStr.__rmod__` exists, the reverse operation is ignored as normally such string formatting operations use the `PyUnicode_Format()` fast path. This patch tests for subclasses of `str` first and picks the slow path in that case. Patch by Martijn Pieters.
Miscellaneous source files for the main Python shared library