New submission from Akash Shende <akash0x...@gmail.com>:

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}'

----------
components: Library (Lib)
messages: 337560
nosy: akash0x53
priority: normal
severity: normal
status: open
title: f-string should be the default placeholder

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue36249>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to