mirror of
https://github.com/python/cpython.git
synced 2026-01-28 21:55:51 +00:00
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