@@ -486,8 +486,8 @@ Connection Objects
486
486
SQLite 3.8.3 or higher, :exc: `NotSupportedError ` will be raised if used
487
487
with older versions.
488
488
489
- The function can return any of the types supported by SQLite: bytes, str, int,
490
- float and `` None ` `.
489
+ The function can return any of
490
+ :ref: ` the types natively supported by SQLite < sqlite3-types > `.
491
491
492
492
.. versionchanged :: 3.8
493
493
The *deterministic * parameter was added.
@@ -506,8 +506,8 @@ Connection Objects
506
506
any number of arguments), and a ``finalize `` method which will return the
507
507
final result of the aggregate.
508
508
509
- The ``finalize `` method can return any of the types supported by SQLite:
510
- bytes, str, int, float and `` None ` `.
509
+ The ``finalize `` method can return any of
510
+ :ref: ` the types natively supported by SQLite < sqlite3-types > `.
511
511
512
512
Example:
513
513
@@ -527,10 +527,10 @@ Connection Objects
527
527
528
528
``step `` and ``value `` accept *num_params * number of parameters,
529
529
unless *num_params * is ``-1 ``, in which case they may take any number of
530
- arguments. `` finalize `` and `` value `` can return any of the types
531
- supported by SQLite:
532
- :class: ` bytes `, :class: ` str `, :class: ` int `, :class: ` float `, and
533
- :const: ` None `. Call :meth: `create_window_function ` with
530
+ arguments.
531
+ `` finalize `` and `` value `` can return any of
532
+ :ref: ` the types natively supported by SQLite < sqlite3-types >`.
533
+ Call :meth: `create_window_function ` with
534
534
*aggregate_class * set to :const: `None ` to clear window function *name *.
535
535
536
536
Aggregate window functions are supported by SQLite 3.25.0 and higher.
0 commit comments