Skip to content

Commit 53039ad

Browse files
mjpietersberkerpeksag
authored andcommitted
bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting operations (#95)
1 parent 046041e commit 53039ad

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

Lib/test/test_unicode.py

+9
Original file line numberDiff line numberDiff line change
@@ -1448,6 +1448,15 @@ def test_formatting_huge_precision(self):
14481448
with self.assertRaises(ValueError):
14491449
result = format_string % 2.34
14501450

1451+
def test_issue28598_strsubclass_rhs(self):
1452+
# A subclass of str with an __rmod__ method should be able to hook
1453+
# into the % operator
1454+
class SubclassedStr(str):
1455+
def __rmod__(self, other):
1456+
return 'Success, self.__rmod__({!r}) was called'.format(other)
1457+
self.assertEqual('lhs %% %r' % SubclassedStr('rhs'),
1458+
"Success, self.__rmod__('lhs %% %r') was called")
1459+
14511460
@support.cpython_only
14521461
def test_formatting_huge_precision_c_limits(self):
14531462
from _testcapi import INT_MAX

Misc/NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ What's New in Python 3.6.1 release candidate 1?
1010
Core and Builtins
1111
-----------------
1212

13+
- Issue #28598: Support __rmod__ for subclasses of str being called before
14+
str.__mod__. Patch by Martijn Pieters.
15+
1316
- bpo-29607: Fix stack_effect computation for CALL_FUNCTION_EX.
1417
Patch by Matthieu Dartiailh.
1518

Python/ceval.c

+9-3
Original file line numberDiff line numberDiff line change
@@ -1409,9 +1409,15 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
14091409
TARGET(BINARY_MODULO) {
14101410
PyObject *divisor = POP();
14111411
PyObject *dividend = TOP();
1412-
PyObject *res = PyUnicode_CheckExact(dividend) ?
1413-
PyUnicode_Format(dividend, divisor) :
1414-
PyNumber_Remainder(dividend, divisor);
1412+
PyObject *res;
1413+
if (PyUnicode_CheckExact(dividend) && (
1414+
!PyUnicode_Check(divisor) || PyUnicode_CheckExact(divisor))) {
1415+
// fast path; string formatting, but not if the RHS is a str subclass
1416+
// (see issue28598)
1417+
res = PyUnicode_Format(dividend, divisor);
1418+
} else {
1419+
res = PyNumber_Remainder(dividend, divisor);
1420+
}
14151421
Py_DECREF(divisor);
14161422
Py_DECREF(dividend);
14171423
SET_TOP(res);

0 commit comments

Comments
 (0)