Change-Id: I479adc6f387a31dbaf232fa22374118c1ce94bea
:tags: bug, typing
:tickets: 9174
- Opened up typing on :meth:`.Select.with_for_update.of` to also accept table
- and mapped class arguments, as seems to be available for the MySQL dialect.
+ Opened up typing on :paramref:`.Select.with_for_update.of` to also accept
+ table and mapped class arguments, as seems to be available for the MySQL
+ dialect.
:tags: bug, typing
:tickets: 9183
- Fixed typing of limit, offset and fetch to allow ``None``.
+ Fixed typing for limit/offset methods including :meth:`.Select.limit`,
+ :meth:`.Select.offset`, :meth:`_orm.Query.limit`, :meth:`_orm.Query.offset`
+ to allow ``None``, which is the documented API to "cancel" the current
+ limit/offset.