Currently lot of code still uses old placeholder and .format() methods for formatting the string. Lets convert them all to f-string "%s" % (name) => f'{name}' "{name}".format(name="yoyo") = > f'{name}'
New code might use f-strings as needed but refactoring old code just for f-strings could result in large change that pollutes git history. Generally large refactorings like this are rejected like making all code PEP 8 compatible is another example. If there is a case by case basis with adequate benchmark and reason then it might have a chance to be accepted by the module author. Thanks
History
Date
User
Action
Args
2022-04-11 14:59:12
admin
set
github: 80430
2019-03-09 07:31:44
serhiy.storchaka
set
status: open -> closedresolution: rejectedstage: patch review -> resolved