Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
126 of your 153 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 5.28s · analysis 22.31s · 20.6 MB · GitHub API rate-limit (preflight)

sqlalchemy/sqlalchemy

https://github.com/sqlalchemy/sqlalchemy · scanned 2026-06-05 14:32 UTC (5 days, 4 hours ago) · 10 languages

1278 raw signals (150 security + 1128 graph) 35th percentile · Python · huge (>500K LoC) System graph score 77 (lower by 3)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 5 days, 4 hours ago · v2 · 586 actionable findings from 2 signal sources. 127 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 85.0 0.15 12.75
security_score 60.9 0.25 15.22
testing_score 97.0 0.20 19.40
documentation_score 85.0 0.15 12.75
practices_score 75.0 0.15 11.25
code_quality 30.6 0.10 3.06
Overall 1.00 74.4
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade B (74/100). Dimensions: security 61, maintainability 85. 150 findings (16 security). 625,624 lines analyzed.

Showing 388 of 586 actionable findings. 713 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical Security checks security secrets conf 0.95 4 occurrences Detected a Generic API Key, potentially exposing access to various services and sensitive operations.
Gitleaks detected a committed secret or credential pattern.
4 files, 4 locations
examples/versioned_history/history_meta.py:322
lib/sqlalchemy/orm/mapped_collection.py:321
lib/sqlalchemy/orm/unitofwork.py:247
test/sql/test_functions.py:1978
high Security checks quality Quality conf 1.00 ✓ Repobility 10 occurrences Missing import: `select` used but not imported
The file uses `select.something(...)` but never imports `select`. This raises NameError at runtime the first time the line executes.
10 files, 10 locations
lib/sqlalchemy/dialects/mssql/base.py:2118
lib/sqlalchemy/dialects/mysql/base.py:1745
lib/sqlalchemy/dialects/sqlite/base.py:1511
lib/sqlalchemy/orm/evaluator.py:223
lib/sqlalchemy/sql/compiler.py:5323
lib/sqlalchemy/sql/selectable.py:4816
lib/sqlalchemy/testing/exclusions.py:58
test/dialect/oracle/_oracledb_mode.py:21
critical System graph security Secrets conf 1.00 Possible secret in lib/sqlalchemy/dialects/mysql/mysqldb.py
Detected pattern matching password_literal. Rotate the credential and move to a secret manager.
lib/sqlalchemy/dialects/mysql/mysqldb.py:204
high Security checks quality Quality conf 1.00 ✓ Repobility 25 occurrences `self.check_constraints` used but never assigned in __init__
Method `enforces_check_constraints` of class `DefaultRequirements` reads `self.check_constraints`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
2 files, 25 locations
test/requirements.py:53, 54, 96, 97, 167, 179, 249, 303, +13 more (23 hits)
tools/trace_orm_adapter.py:52, 56 (2 hits)
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 19 occurrences GitHub Action is tag-pinned rather than SHA-pinned
Action `actions/checkout` pinned to mutable ref `@v6` uses a mutable tag or branch. Pin external actions to a reviewed full commit SHA when the workflow is security-sensitive.
3 files, 19 locations
.github/workflows/run-on-pr.yaml:42, 45, 77, 80 (8 hits)
.github/workflows/run-test.yaml:104, 107, 142, 145 (8 hits)
.github/workflows/create-wheels.yaml:70, 103 (3 hits)
CI/CD securitySupply chainGitHub Actions
high Security checks quality Quality conf 1.00 ✓ Repobility Phantom test coverage: test_mypy
Test function `test_mypy` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
noxfile.py:342
high Security checks quality Quality conf 1.00 ✓ Repobility Phantom test coverage: test_pep484
Test function `test_pep484` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
noxfile.py:327
high Security checks quality Quality conf 1.00 ✓ Repobility Phantom test coverage: test_pep8
Test function `test_pep8` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
noxfile.py:361
high Security checks software dependencies conf 0.90 ✓ Repobility 3 occurrences pre-commit hook `https://github.com/python/black` pinned to mutable rev `26.3.1`
`.pre-commit-config.yaml` references `https://github.com/python/black` at `rev: 26.3.1`. If `{rev}` is a branch or version tag, the repo owner can push new code there and `pre-commit install --install-hooks` will fetch it on every developer's machine.
lines 6, 10, 15
.pre-commit-config.yaml:6, 10, 15 (3 hits)
high System graph security security conf 1.00 Insecure pattern 'eval_used' in lib/sqlalchemy/orm/clsregistry.py:592
Found a known-risky pattern (eval_used). Review and replace if possible.
lib/sqlalchemy/orm/clsregistry.py:592 Eval used
high System graph security security conf 1.00 Insecure pattern 'eval_used' in lib/sqlalchemy/util/typing.py:265
Found a known-risky pattern (eval_used). Review and replace if possible.
lib/sqlalchemy/util/typing.py:265 Eval used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in lib/sqlalchemy/orm/instrumentation.py:735
Found a known-risky pattern (exec_used). Review and replace if possible.
lib/sqlalchemy/orm/instrumentation.py:735 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in lib/sqlalchemy/sql/lambdas.py:1264
Found a known-risky pattern (exec_used). Review and replace if possible.
lib/sqlalchemy/sql/lambdas.py:1264 Exec used
high System graph security security conf 1.00 Insecure pattern 'exec_used' in lib/sqlalchemy/util/langhelpers.py:352
Found a known-risky pattern (exec_used). Review and replace if possible.
lib/sqlalchemy/util/langhelpers.py:352 Exec used
medium Security checks security auth conf 0.92 [AUC001] No Repobility access matrix policy found: The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
The repository uses web/API frameworks but does not define .repobility/access.yml or equivalent authorization documentation.
medium Security checks quality Quality Average file size is 937 lines (recommend <300)
Refactor large files by extracting related functions into separate modules. Target files with 300+ lines first. Use the Single Responsibility Principle — each module should have one clear purpose.
low Security checks quality Error handling conf 0.55 ✓ Repobility 18 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
9 files, 18 locations
lib/sqlalchemy/engine/base.py:647, 1121, 1164, 1199, 1211, 1234, 1506, 1796, +1 more (9 hits)
test/perf/compiled_extensions/base.py:47, 106 (2 hits)
lib/sqlalchemy/engine/util.py:135
lib/sqlalchemy/exc.py:759
test/perf/compiled_extensions/command.py:53
test/perf/invalidate_stresstest.py:34
test/perf/many_table_reflection.py:554
test/requirements.py:1337
Error handlingquality
medium Security checks quality Quality conf 1.00 ✓ Repobility Mutable default argument in `inspect_formatargspec` (dict)
`def inspect_formatargspec(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
lib/sqlalchemy/util/compat.py:187
medium System graph cicd CI/CD security conf 1.00 5 occurrences GitHub Action is tag-pinned rather than SHA-pinned
docker/setup-qemu-action@v4 can move without a code change in this repo. Pin third-party actions to a reviewed 40-character commit SHA.
lines 75, 93, 122
.github/workflows/create-wheels.yaml:75, 93, 122 (5 hits)
CI/CD securitySupply chainGitHub Actions
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — lib/sqlalchemy/util/tool_support.py:110
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
low Security checks quality Quality conf 0.60 13 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 13 locations
lib/sqlalchemy/dialects/mysql/asyncmy.py:82, 101 (2 hits)
lib/sqlalchemy/dialects/mssql/mssqlpython.py:84
lib/sqlalchemy/dialects/mysql/aiomysql.py:91
lib/sqlalchemy/dialects/mysql/json.py:25
lib/sqlalchemy/dialects/mysql/mysqlconnector.py:192
lib/sqlalchemy/dialects/oracle/json.py:78
lib/sqlalchemy/dialects/postgresql/pg8000.py:85
lib/sqlalchemy/dialects/postgresql/psycopg2.py:365
duplicationquality
low System graph quality Maintenance conf 1.00 298 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: examples/dogpile_caching/helloworld.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: examples/dogpile_caching/relationship_caching.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: examples/performance/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/dialects/_typing.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/dialects/mysql/reserved_words.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/dialects/oracle/dictionary.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/dialects/postgresql/operators.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/events.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/future/engine.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/schema.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/sql/_orm_types.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/sql/expression.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: lib/sqlalchemy/types.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: reap_dbs.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: setup.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/conftest.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/dialect/test_suite.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/orm/inheritance/test_deprecations.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/orm/test_tstring_py314.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/perf/compiled_extensions/__main__.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/sql/test_tstrings_py314.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/typing/plain_files/engine/engine_inspection.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/typing/plain_files/sql/core_ddl.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/typing/plain_files/sql/create_table_as.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/typing/plain_files/sql/functions.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: test/typing/plain_files/sql/lowercase_objects.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: tools/walk_packages.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 15 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: noxfile.py:github_cext_greenlet, noxfile.py:github_cext This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
15 occurrences
repo-level (15 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: test/requirements.py:unicode_data_no_special_types, lib/sqlalchemy/testing/requirements.py:unicode_data_no_special_types, lib/sqlalchemy/testing/requirements.py:unicode_data This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: test/requirements.py:go, test/requirements.py:go, test/requirements.py:go, test/requirements.py:go This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're …
duplicatesduplication
low System graph quality Integrity conf 1.00 Near-duplicate function bodies in 7 places
Functions with the same first-5-line body hash: test/requirements.py:check_constraints, test/requirements.py:check, test/requirements.py:check, test/requirements.py:check This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate …
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_generate_shallow_copy` in lib/sqlalchemy/sql/traversals.py:91
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_init_legacy` in lib/sqlalchemy/engine/reflection.py:237
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_schema_item_copy` in lib/sqlalchemy/sql/schema.py:262
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_wrap_fn_for_legacy` in lib/sqlalchemy/event/attr.py:168
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_wrap_fn_for_legacy` in lib/sqlalchemy/event/legacy.py:69
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `check_old` in lib/sqlalchemy/orm/attributes.py:1149
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `check_old` in lib/sqlalchemy/orm/writeonly.py:307
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `constructor_copy` in lib/sqlalchemy/dialects/mysql/enumerated.py:268
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `constructor_copy` in lib/sqlalchemy/util/langhelpers.py:1478
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in lib/sqlalchemy/testing/__init__.py:28
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in lib/sqlalchemy/testing/assertions.py:86
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in lib/sqlalchemy/testing/fixtures/sql.py:20
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in lib/sqlalchemy/testing/suite/test_results.py:442
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in lib/sqlalchemy/testing/suite/test_select.py:1848
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/aaa_profiling/test_memusage.py:1077
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/base/test_events.py:12
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/base/test_result.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/base/test_warnings.py:4
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/dialect/mssql/test_deprecations.py:24
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/dialect/mssql/test_reflection.py:132
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/dialect/mysql/test_compiler.py:76
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/dialect/mysql/test_deprecations.py:5
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/dialect/oracle/test_compiler.py:41
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/dialect/postgresql/test_compiler.py:83
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/dialect/postgresql/test_types.py:88
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/engine/test_deprecations.py:26
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/engine/test_execute.py:56
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/engine/test_processors.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/ext/asyncio/test_session.py:44
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/ext/test_deprecations.py:21
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/ext/test_horizontal_shard.py:35
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/declarative/test_clsregistry.py:480
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/declarative/test_dc_transforms.py:58
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/declarative/test_dc_transforms_future_anno_sync.py:67
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/declarative/test_tm_future_annotations_sync.py:93
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/declarative/test_typed_mapping.py:84
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/dml/test_bulk_statements.py:48
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/test_core_compilation.py:54
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/test_deprecations.py:53
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/test_mapper.py:48
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/test_query.py:77
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/orm/test_session.py:91
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_compiler.py:2007
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_constraints.py:27
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_defaults.py:29
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_delete.py:16
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_deprecations.py:37
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_external_traversal.py:49
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_functions.py:63
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_metadata.py:67
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_operators.py:81
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_resultset.py:54
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_selectable.py:770
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_sequences.py:18
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `expect_deprecated` in test/sql/test_statement_params.py:15
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `history_copy` in examples/versioned_history/history_meta.py:70
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `large_v1` in test/sql/test_compare.py:1325
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `rec_copy` in test/orm/test_composites.py:487
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `tbl_v2` in test/dialect/oracle/test_reflection.py:759
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_copy` in test/engine/test_parseconnect.py:282
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_copy` in test/ext/test_associationproxy.py:1541
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_copy` in test/ext/test_mutable.py:500
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_criteria_post_replace_legacy` in test/orm/test_relationship_criteria.py:660
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_labeling_for_unnamed_legacy` in test/ext/test_hybrid.py:588
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_no_uniquing_cols_legacy` in test/orm/test_froms.py:1847
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_odict_copy` in test/base/test_utils.py:187
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `test_query_cols_legacy` in lib/sqlalchemy/sql/elements.py:3021
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/mssql/base.py:2035
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/mssql/mssqlpython.py:89
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/mssql/pymssql.py:59
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/mssql/pyodbc.py:569
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/mysql/_mariadb_shim.py:236
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/mysql/cymysql.py:73
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/mysql/mariadbconnector.py:150
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/mysql/mysqlconnector.py:156
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/mysql/pyodbc.py:93
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/oracle/base.py:1315
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/oracle/cx_oracle.py:1114
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/postgresql/_psycopg_common.py:112
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/postgresql/asyncpg.py:1092
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/postgresql/pg8000.py:430
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/postgresql/psycopg.py:388
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/postgresql/psycopg2.py:623
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/sqlite/base.py:1436
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/dialects/sqlite/pysqlite.py:471
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/util/__init__.py:46
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `update_copy` in lib/sqlalchemy/util/_collections.py:428
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `use_legacy` in test/orm/test_joins.py:237
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `users_copy` in test/typing/plain_files/sql/create_table_as.py:30
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `uses_deprecated` in test/dialect/mssql/test_compiler.py:439
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `uses_deprecated` in test/orm/declarative/test_mixin.py:39
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `uses_deprecated` in test/orm/test_cascade.py:32
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `uses_deprecated` in test/sql/test_types.py:339
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/dialects/mysql/base.py:1699
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/engine/_util_cy.py:18
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/engine/create.py:587
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/engine/default.py:334
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/engine/url.py:814
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/ext/asyncio/scoping.py:33
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/ext/horizontal_shard.py:195
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/clsregistry.py:456
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/context.py:2375
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/evaluator.py:33
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/events.py:280
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/interfaces.py:75
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/mapper.py:2146
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/properties.py:890
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/query.py:97
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/scoping.py:34
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/strategies.py:1993
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/orm/strategy_options.py:138
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/sql/base.py:62
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/sql/coercions.py:1256
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/sql/compiler.py:5435
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/sql/ddl.py:1207
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/sql/selectable.py:115
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/sql/sqltypes.py:70
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/sql/type_api.py:221
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `warn_deprecated` in lib/sqlalchemy/util/deprecations.py:55
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: bool_or_value
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/langhelpers.py:1424
low System graph software Dead code conf 1.00 Possibly dead Python function: class_logger
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/log.py:71
low System graph software Dead code conf 1.00 Possibly dead Python function: cmp
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/compat.py:166
low System graph software Dead code conf 1.00 Possibly dead Python function: constructor_key
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/langhelpers.py:1467
low System graph software Dead code conf 1.00 Possibly dead Python function: count_from_0
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/orderinglist.py:206
low System graph software Dead code conf 1.00 Possibly dead Python function: count_from_1
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/orderinglist.py:212
low System graph software Dead code conf 1.00 Possibly dead Python function: critical
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/log.py:175
low System graph software Dead code conf 1.00 Possibly dead Python function: dict_of
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/instrumentation.py:209
low System graph software Dead code conf 1.00 Possibly dead Python function: dict_setter
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/associationproxy.py:850
low System graph software Dead code conf 1.00 Possibly dead Python function: exception
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/log.py:169
low System graph software Dead code conf 1.00 Possibly dead Python function: exceptval
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/cython.py:58
low System graph software Dead code conf 1.00 Possibly dead Python function: execute_and_instances
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/horizontal_shard.py:426
low System graph software Dead code conf 1.00 Possibly dead Python function: expr_comparator
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/hybrid.py:1746
low System graph software Dead code conf 1.00 Possibly dead Python function: find_native_user_instrumentation_hook
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/instrumentation.py:69
low System graph software Dead code conf 1.00 Possibly dead Python function: getargspec_init
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/langhelpers.py:737
low System graph software Dead code conf 1.00 Possibly dead Python function: listen_for_type
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/mutable.py:710
low System graph software Dead code conf 1.00 Possibly dead Python function: load_attrs
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/mutable.py:529
low System graph software Dead code conf 1.00 Possibly dead Python function: methods_equivalent
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/langhelpers.py:1047
low System graph software Dead code conf 1.00 Possibly dead Python function: oneshot
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/langhelpers.py:1388
low System graph software Dead code conf 1.00 Possibly dead Python function: plain_setter
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/associationproxy.py:856
low System graph software Dead code conf 1.00 Possibly dead Python function: reorder
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/orderinglist.py:331
low System graph software Dead code conf 1.00 Possibly dead Python function: repl
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/deprecations.py:301
low System graph software Dead code conf 1.00 Possibly dead Python function: returns
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/cython.py:66
low System graph software Dead code conf 1.00 Possibly dead Python function: set_
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/mutable.py:537
low System graph software Dead code conf 1.00 Possibly dead Python function: state_of
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/ext/instrumentation.py:202
low System graph software Dead code conf 1.00 Possibly dead Python function: warn_exception
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
lib/sqlalchemy/util/langhelpers.py:1834
low System graph quality Integrity conf 1.00 Stub function `_double_percents` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/mysql/mysqlconnector.py:109
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_early_mapping` (body is just `pass`/`return`) — lib/sqlalchemy/orm/decl_base.py:2135
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_gen_cache_key` (body is just `pass`/`return`) — examples/dogpile_caching/caching_query.py:137
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_get_current_adapter` (body is just `pass`/`return`) — lib/sqlalchemy/orm/context.py:928
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_init_collections` (body is just `pass`/`return`) — lib/sqlalchemy/sql/schema.py:1205
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_init_compiler_cls` (body is just `pass`/`return`) — lib/sqlalchemy/sql/compiler.py:955
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_path_for_compare` (body is just `pass`/`return`) — lib/sqlalchemy/orm/path_registry.py:422
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_refresh_for_new_column` (body is just `pass`/`return`) — lib/sqlalchemy/sql/selectable.py:3244
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_reset_empty` (body is just `pass`/`return`) — lib/sqlalchemy/orm/writeonly.py:490
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_show_warnings` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/mysql/aiomysql.py:188
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_sqlite_create_db` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/sqlite/provision.py:170
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `_test_sql` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/sqlite/pysqlite.py:677
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `append` (body is just `pass`/`return`) — lib/sqlalchemy/event/attr.py:86
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `bind_processor` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/mysql/types.py:310
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `bind_processor` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/postgresql/_psycopg_common.py:31
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `bind_processor` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/postgresql/asyncpg.py:346
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `bind_processor` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/postgresql/pg8000.py:167
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `bind_processor` (body is just `pass`/`return`) — lib/sqlalchemy/sql/sqltypes.py:277
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `close` (body is just `pass`/`return`) — test/perf/compiled_extensions/result.py:351
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `create_row_processor` (body is just `pass`/`return`) — lib/sqlalchemy/orm/strategies.py:183
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `description` (body is just `pass`/`return`) — lib/sqlalchemy/sql/elements.py:365
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `dispose` (body is just `pass`/`return`) — lib/sqlalchemy/pool/impl.py:317
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `do_begin` (body is just `pass`/`return`) — lib/sqlalchemy/engine/default.py:717
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `drop_all_schema_objects_pre_tables` (body is just `pass`/`return`) — lib/sqlalchemy/testing/provision.py:268
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `get_current_test_name` (body is just `pass`/`return`) — lib/sqlalchemy/testing/config.py:76
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `init_class_attribute` (body is just `pass`/`return`) — lib/sqlalchemy/orm/interfaces.py:1545
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `init_objects` (body is just `pass`/`return`) — test/perf/compiled_extensions/base.py:36
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `instrument_attribute` (body is just `pass`/`return`) — lib/sqlalchemy/ext/instrumentation.py:259
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `lazy_gc` (body is just `pass`/`return`) — lib/sqlalchemy/testing/util.py:54
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `my_listener_function` (body is just `pass`/`return`) — lib/sqlalchemy/event/api.py:183
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `operate` (body is just `pass`/`return`) — lib/sqlalchemy/orm/evaluator.py:41
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `process_compile_state` (body is just `pass`/`return`) — lib/sqlalchemy/orm/query.py:3451
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `process_deletes` (body is just `pass`/`return`) — lib/sqlalchemy/orm/dependency.py:230
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `process_statement` (body is just `pass`/`return`) — lib/sqlalchemy/testing/assertsql.py:28
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `receives_str_col_expr` (body is just `pass`/`return`) — test/typing/plain_files/sql/common_sql_element.py:73
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `reset_characteristic` (body is just `pass`/`return`) — lib/sqlalchemy/engine/characteristics.py:125
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `result_processor` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/oracle/cx_oracle.py:602
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `result_processor` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/postgresql/psycopg2.py:509
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `scalar` (body is just `pass`/`return`) — lib/sqlalchemy/engine/result.py:1123
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `setup_mappers` (body is just `pass`/`return`) — test/orm/_fixtures.py:300
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `update_from_clause` (body is just `pass`/`return`) — lib/sqlalchemy/dialects/mysql/base.py:1862
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `visit_fromclause_derived_column_collection` (body is just `pass`/`return`) — lib/sqlalchemy/sql/traversals.py:645
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `work_sync` (body is just `pass`/`return`) — test/typing/plain_files/ext/asyncio/engines.py:18
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `work_with_a_session_one` (body is just `pass`/`return`) — test/typing/plain_files/ext/asyncio/async_sessionmaker.py:47
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `yield_per` (body is just `pass`/`return`) — lib/sqlalchemy/engine/cursor.py:1088
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/dialects/mssql/base.py (4854 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/dialects/mysql/base.py (3881 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/dialects/oracle/base.py (3977 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/dialects/oracle/cx_oracle.py (1602 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/dialects/postgresql/base.py (5812 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/dialects/sqlite/base.py (3066 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/engine/base.py (3355 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/engine/cursor.py (2425 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/engine/default.py (2402 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/engine/interfaces.py (3495 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/engine/reflection.py (2101 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/engine/result.py (2012 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/ext/associationproxy.py (2073 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/ext/asyncio/scoping.py (1679 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/ext/asyncio/session.py (2006 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/ext/automap.py (1702 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/ext/hybrid.py (1877 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/_orm_constructors.py (2694 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/attributes.py (2868 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/bulk_persistence.py (2152 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/collections.py (1569 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/context.py (3475 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/decl_api.py (2283 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/decl_base.py (2306 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/events.py (3387 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/interfaces.py (1588 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/loading.py (1693 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/mapper.py (4422 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/persistence.py (1790 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/query.py (3528 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/relationships.py (3598 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/scoping.py (2233 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/session.py (5447 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/strategies.py (3530 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/strategy_options.py (2573 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/orm/util.py (2451 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/pool/base.py (1522 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/_elements_constructors.py (2164 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/base.py (2698 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/compiler.py (8329 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/crud.py (1816 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/ddl.py (1928 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/dml.py (1977 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/elements.py (6032 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/functions.py (2380 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/operators.py (2897 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/schema.py (6702 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/selectable.py (7542 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/sqltypes.py (4093 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/sql/type_api.py (2446 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/testing/requirements.py (1978 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/testing/suite/test_reflection.py (3556 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/testing/suite/test_select.py (2112 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/testing/suite/test_types.py (2271 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: lib/sqlalchemy/util/langhelpers.py (2323 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: test/aaa_profiling/test_memusage.py (1979 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.

Showing first 300 of 388. Refine filters or use the findings page for deep search.

For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/32a48efe-ddc4-452c-a79e-2a21ab375140/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/32a48efe-ddc4-452c-a79e-2a21ab375140/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.