mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
Fix missing f prefix on f-strings (GH-91910)
(cherry picked from commit f882d33778)
Co-authored-by: Alexander Shadchin <alexandr.shadchin@gmail.com>
This commit is contained in:
parent
f4252dfb8e
commit
081e95165e
3 changed files with 3 additions and 2 deletions
|
|
@ -885,7 +885,7 @@ async def _sock_sendfile_native(self, sock, file, offset, count):
|
|||
# non-mmap files even if sendfile is supported by OS
|
||||
raise exceptions.SendfileNotAvailableError(
|
||||
f"syscall sendfile is not available for socket {sock!r} "
|
||||
"and file {file!r} combination")
|
||||
f"and file {file!r} combination")
|
||||
|
||||
async def _sock_sendfile_fallback(self, sock, file, offset, count):
|
||||
if offset:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue