]> git.ipfire.org Git - thirdparty/tornado.git/commit
*: Switch from percent formatting to f-strings 3403/head
authorBen Darnell <ben@bendarnell.com>
Thu, 13 Jun 2024 19:25:50 +0000 (15:25 -0400)
committerBen Darnell <ben@bendarnell.com>
Thu, 13 Jun 2024 19:25:50 +0000 (15:25 -0400)
commitf7818e799a0fc72e136b93d34c94eda2e127a88c
treed78274be3a21e630419d9ee829ed46e633c791ac
parent90ae304f6f68322a8186075bd1bbdcd50f5d9e21
*: Switch from percent formatting to f-strings

Automated change using pyupgrade in two passes (once to go from percent
formatting to str.format, then to go from str.format to f-strings),
followed by black.

This left a few uses of str.format for unknown reasons.
22 files changed:
demos/webspider/webspider.py
tornado/auth.py
tornado/escape.py
tornado/gen.py
tornado/http1connection.py
tornado/httpclient.py
tornado/httputil.py
tornado/locale.py
tornado/locks.py
tornado/log.py
tornado/queues.py
tornado/routing.py
tornado/simple_httpclient.py
tornado/template.py
tornado/test/curl_httpclient_test.py
tornado/test/gen_test.py
tornado/test/httpclient_test.py
tornado/test/httpserver_test.py
tornado/test/simple_httpclient_test.py
tornado/test/web_test.py
tornado/testing.py
tornado/web.py