Now you can pass whole commands as variables inside f-strings, without quoting.
Take this piece of code:
pycon
>>> cmd = 'uname -a'
>>> ~f'{cmd}'
/bin/sh: 1: uname -a: not found
This is because `uname -a` was quoted into `'uname -a'` to avoid shell injection.
To avoid this, support for `:raw` format_spec as added:
pycon
>>> cmd = 'uname -a'
>>> ~f'{cmd:raw}'
Linux pop-os 5.11.0 [...] x86_64 GNU/Linux
Note that this shouldn't be used with external data, or this *will* expose you to shell injection.