mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 09:24:31 +02:00
* Add comprehensive type annotations - mypy.ini: expanded configuration with module-specific settings - hookspecs.py: type annotations for hook functions - plugins.py: typed get_plugins() return value - recipes.py: full type annotations for parsedate, parsedatetime, jsonsplit - utils.py: extensive type annotations including Row type alias, TypeTracker, ValueTracker, and all utility functions - db.py: type annotations for Database methods (__exit__, ensure_autocommit_off, tracer, register_function, etc.) and Queryable class methods - tests/test_docs.py: updated to match new signature display format * Fix type errors caught by ty check - Add type: ignore comments for external library type stub limitations (csv.reader, click.progressbar, IOBase.name, Callable.__name__) - Change Iterable to Sequence for SQL where_args parameters - Use db.table() instead of db[name] for proper Table return type - Fix rebuild_fts return type from None to Table - Update test_tracer to expect fewer queries (optimization side effect) * Fix mypy type errors - Add type: ignore comments for runtime-valid patterns mypy can't verify - Fix new_column_types annotation to Dict[str, Set[type]] - Add type: ignore for Default sentinel values passed to create_table * mypy skip tests directory * Fix CI: exclude typing imports from recipe docs, skip mypy on tests - Add Callable and Optional to exclusion list in _generate_convert_help() - Regenerate docs/cli-reference.rst with cog - Add [mypy-tests.*] ignore_errors = True to skip test type errors --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| sniff | ||
| __init__.py | ||
| conftest.py | ||
| ext.c | ||
| test_analyze.py | ||
| test_analyze_tables.py | ||
| test_attach.py | ||
| test_cli.py | ||
| test_cli_bulk.py | ||
| test_cli_convert.py | ||
| test_cli_insert.py | ||
| test_cli_memory.py | ||
| test_column_affinity.py | ||
| test_constructor.py | ||
| test_conversions.py | ||
| test_convert.py | ||
| test_create.py | ||
| test_create_view.py | ||
| test_default_value.py | ||
| test_delete.py | ||
| test_docs.py | ||
| test_duplicate.py | ||
| test_enable_counts.py | ||
| test_extract.py | ||
| test_extracts.py | ||
| test_fts.py | ||
| test_get.py | ||
| test_gis.py | ||
| test_hypothesis.py | ||
| test_insert_files.py | ||
| test_introspect.py | ||
| test_list_mode.py | ||
| test_lookup.py | ||
| test_m2m.py | ||
| test_plugins.py | ||
| test_query.py | ||
| test_recipes.py | ||
| test_recreate.py | ||
| test_register_function.py | ||
| test_rows.py | ||
| test_rows_from_file.py | ||
| test_sniff.py | ||
| test_suggest_column_types.py | ||
| test_tracer.py | ||
| test_transform.py | ||
| test_update.py | ||
| test_upsert.py | ||
| test_utils.py | ||
| test_wal.py | ||