This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rafael.capucho
Recipients rafael.capucho, serhiy.storchaka
Date 2017-02-27.17:37:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1488217030.78.0.211271937814.issue29668@psf.upfronthosting.co.za>
In-reply-to
Content
```
a = "some_underscored_value"


u = (f" hello `{a}` cruel world"
     " hi")

print(u)

query = (f"SELECT COUNT(*) "
         "FROM `{a}` entry "
         "WHERE entry.type == 'device' "
         "AND entry.instance == {a}")

print(query)
```
History
Date User Action Args
2017-02-27 17:37:10rafael.capuchosetrecipients: + rafael.capucho, serhiy.storchaka
2017-02-27 17:37:10rafael.capuchosetmessageid: <1488217030.78.0.211271937814.issue29668@psf.upfronthosting.co.za>
2017-02-27 17:37:10rafael.capucholinkissue29668 messages
2017-02-27 17:37:10rafael.capuchocreate