Skip to content

Commit 3354d87

Browse files
committed
Add versionchanged for timeout to executemany
1 parent bb326fc commit 3354d87

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

asyncpg/connection.py

+3
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,9 @@ async def executemany(self, command: str, args, *, timeout: float=None):
235235
:return None: This method discards the results of the operations.
236236
237237
.. versionadded:: 0.7.0
238+
239+
.. versionchanged:: 0.11.0
240+
`timeout` became a keyword-only parameter.
238241
"""
239242
self._check_open()
240243
return await self._executemany(command, args, timeout)

0 commit comments

Comments
 (0)