@@ -35,7 +35,7 @@ async def _call_client(coro: Coroutine[Any, Any, Any]) -> Any:
3535 client.ProtocolError → dbapi.InterfaceError
3636 client.DataError → dbapi.DataError
3737 client.InterfaceError → dbapi.InterfaceError
38- any other DqliteError → dbapi.InterfaceError (ISSUE-85)
38+ any other DqliteError → dbapi.InterfaceError
3939
4040 Every ``dqliteclient`` exception is a subclass of ``DqliteError``;
4141 the trailing catch-all ensures a new client exception class cannot
@@ -61,7 +61,7 @@ async def _call_client(coro: Coroutine[Any, Any, Any]) -> Any:
6161 except _client_exc .DqliteError as e :
6262 # Catch-all for any future subclass of DqliteError not enumerated
6363 # above. Surface as InterfaceError rather than leaking to the
64- # caller as a non-DBAPI exception (ISSUE-85) .
64+ # caller as a non-DBAPI exception.
6565 raise _DbapiInterfaceError (f"unrecognized client error ({ type (e ).__name__ } ): { e } " ) from e
6666
6767
@@ -97,7 +97,7 @@ def _reject_non_sequence_params(params: Any) -> None:
9797 scrambles positional bindings. And we reject ``str`` /
9898 ``bytes`` / ``bytearray`` / ``memoryview`` — they are iterable, so
9999 they would silently "explode" into character/byte binds and the
100- caller almost always meant ``(value,)`` instead (ISSUE-86) .
100+ caller almost always meant ``(value,)`` instead.
101101 """
102102 if params is None :
103103 return
@@ -152,7 +152,7 @@ def _strip_leading_comments(sql: str) -> str:
152152def _is_row_returning (sql : str ) -> bool :
153153 """Heuristic for "does this statement return a result set?"
154154
155- Single source of truth for sync and async cursors (ISSUE-110) .
155+ Single source of truth for sync and async cursors.
156156 Matches leading SELECT/PRAGMA/EXPLAIN/WITH after stripping comments,
157157 and catches trailing/embedded RETURNING clauses on DML.
158158
@@ -232,7 +232,7 @@ def rownumber(self) -> int | None:
232232 PEP 249 optional extension: returns ``None`` if no result set is
233233 active (no query executed, or last statement was DML without
234234 RETURNING); otherwise returns the index of the row that the next
235- ``fetchone()`` would produce (ISSUE-80) .
235+ ``fetchone()`` would produce.
236236 """
237237 if self ._description is None :
238238 return None
@@ -369,8 +369,8 @@ def fetchmany(self, size: int | None = None) -> list[tuple[Any, ...]]:
369369 size = self ._arraysize
370370 if size < 0 :
371371 # Previously ``range(-5)`` silently returned [] — hid caller
372- # bugs (ISSUE-82) . ``arraysize`` setter already validates
373- # >= 1; mirror that here.
372+ # bugs. ``arraysize`` setter already validates >= 1; mirror
373+ # that here.
374374 raise ProgrammingError (f"fetchmany size must be >= 0, got { size } " )
375375
376376 result : list [tuple [Any , ...]] = []
0 commit comments