File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2898,14 +2898,14 @@ class TableChange:
28982898 name : str
28992899 """ Name of the affected table"""
29002900
2901- new : tuple [SQLiteValue | typing . Literal [apsw . no_change ], ...] | None
2901+ new : tuple [SQLiteValue | Literal [no_change ], ...] | None
29022902 """:class:`None` if not applicable (like a DELETE). Otherwise a
29032903 tuple of the new values for the row, with :attr:`apsw.no_change`
29042904 if no value was provided for that column.
29052905
29062906 Calls: `sqlite3changeset_new <https://sqlite.org/session/sqlite3changeset_new.html>`__"""
29072907
2908- old : tuple [SQLiteValue | typing . Literal [apsw . no_change ], ...] | None
2908+ old : tuple [SQLiteValue | Literal [no_change ], ...] | None
29092909 """:class:`None` if not applicable (like an INSERT). Otherwise a tuple
29102910 of the old values for the row before this change, with
29112911 :attr:`apsw.no_change` if no value was provided for that column,
Original file line number Diff line number Diff line change 38683868"\n" \
38693869" Name of the affected table\n"
38703870
3871- #define TableChange_new_DOC ":type: tuple[SQLiteValue | typing. Literal[apsw. no_change], ...] | None\n" \
3871+ #define TableChange_new_DOC ":type: tuple[SQLiteValue | Literal[no_change], ...] | None\n" \
38723872"\n" \
38733873":class:`None` if not applicable (like a DELETE). Otherwise a\n" \
38743874"tuple of the new values for the row, with :attr:`apsw.no_change`\n" \
38753875"if no value was provided for that column.\n" \
38763876"\n" \
38773877"Calls: `sqlite3changeset_new <https://sqlite.org/session/sqlite3changeset_new.html>`__\n"
38783878
3879- #define TableChange_old_DOC ":type: tuple[SQLiteValue | typing. Literal[apsw. no_change], ...] | None\n" \
3879+ #define TableChange_old_DOC ":type: tuple[SQLiteValue | Literal[no_change], ...] | None\n" \
38803880"\n" \
38813881":class:`None` if not applicable (like an INSERT). Otherwise a tuple\n" \
38823882"of the old values for the row before this change, with\n" \
You can’t perform that action at this time.
0 commit comments