Boto3, an AWS SDK for Python
This report presents the forensic synthetic code analysis of boto/boto3, a Python project with 9,856 GitHub stars. SynthScan v2.0 examined 105,272 lines of code across 2228 source files, recording 573 pattern matches distributed across 11 syntactic categories. The overall adjusted score of 8.2 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 573 distinct pattern matches across 11 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | tests/unit/test_utils.py | 41 | def test_inject_attributes_with_no_shadowing(self): | CODE |
| LOW⚡ | tests/unit/test_utils.py | 46 | def test_shadowing_existing_var_raises_exception(self): | CODE |
| LOW⚡ | tests/unit/test_utils.py | 53 | def test_get_waiter_model_is_lazy(self): | CODE |
| LOW | tests/unit/test_changelog.py | 25 | def test_next_release_json_is_well_formed(json_path): | CODE |
| LOW | tests/unit/test_crt.py | 47 | def mock_crt_client_singleton(monkeypatch): | CODE |
| LOW | tests/unit/test_crt.py | 55 | def mock_serializer_singleton(monkeypatch): | CODE |
| LOW | tests/unit/test_crt.py | 78 | def test_create_crt_transfer_manager_with_lock_in_use( | CODE |
| LOW | tests/unit/test_crt.py | 91 | def test_create_crt_transfer_manager( | CODE |
| LOW | tests/unit/test_crt.py | 101 | def test_crt_singleton_is_returned_every_call( | CODE |
| LOW | tests/unit/test_crt.py | 115 | def test_create_crt_transfer_manager_w_client_in_wrong_region( | CODE |
| LOW | tests/unit/test_crt.py | 173 | def test_compare_idenities_no_credentials(self): | CODE |
| LOW | tests/unit/test_crt.py | 219 | def test_config_without_crt_support_emits_warning( | CODE |
| LOW⚡ | tests/unit/test_crt.py | 237 | def test_bare_requires_crt_fails_immediately(self): | CODE |
| LOW⚡ | tests/unit/test_crt.py | 244 | def test_requires_crt_skips_when_no_crt(self): | CODE |
| LOW⚡ | tests/unit/test_crt.py | 253 | def test_requires_crt_runs_when_crt_available(self): | CODE |
| LOW | tests/unit/test_boto3.py | 27 | def test_create_default_session(self): | CODE |
| LOW | tests/unit/test_boto3.py | 34 | def test_create_default_session_with_args(self): | CODE |
| LOW | tests/unit/test_boto3.py | 46 | def test_client_creates_default_session(self, setup_session): | CODE |
| LOW | tests/unit/test_boto3.py | 57 | def test_client_uses_existing_session(self, setup_session): | CODE |
| LOW | tests/unit/test_boto3.py | 65 | def test_client_passes_through_arguments(self): | CODE |
| LOW | tests/unit/test_boto3.py | 77 | def test_resource_creates_default_session(self, setup_session): | CODE |
| LOW | tests/unit/test_boto3.py | 88 | def test_resource_uses_existing_session(self, setup_session): | CODE |
| LOW | tests/unit/test_boto3.py | 96 | def test_resource_passes_through_arguments(self): | CODE |
| LOW⚡ | tests/unit/test_session.py | 46 | def test_can_access_region_name(self): | CODE |
| LOW⚡ | tests/unit/test_session.py | 56 | def test_arguments_not_required(self): | CODE |
| LOW⚡ | tests/unit/test_session.py | 61 | def test_credentials_can_be_set(self): | CODE |
| LOW | tests/unit/test_session.py | 75 | def test_credentials_can_be_set_with_account_id(self): | CODE |
| LOW | tests/unit/test_session.py | 92 | def test_account_id_set_without_credentials(self): | CODE |
| LOW⚡ | tests/unit/test_session.py | 202 | def test_get_available_services(self): | CODE |
| LOW⚡ | tests/unit/test_session.py | 210 | def test_get_available_resources(self): | CODE |
| LOW⚡ | tests/unit/test_session.py | 220 | def test_get_available_partitions(self): | CODE |
| LOW⚡ | tests/unit/test_session.py | 228 | def test_get_available_regions(self): | CODE |
| LOW | tests/unit/test_session.py | 241 | def test_get_partition_for_region(self): | CODE |
| LOW | tests/unit/test_session.py | 256 | def test_create_client_with_args(self): | CODE |
| LOW | tests/unit/test_session.py | 275 | def test_create_client_with_aws_account_id(self): | CODE |
| LOW | tests/unit/test_session.py | 301 | def test_create_resource_with_args(self): | CODE |
| LOW | tests/unit/test_session.py | 332 | def test_create_resource_with_config(self): | CODE |
| LOW | tests/unit/test_session.py | 364 | def test_create_resource_with_config_override_user_agent_extra(self): | CODE |
| LOW | tests/unit/test_session.py | 396 | def test_create_resource_latest_version(self): | CODE |
| LOW | tests/unit/test_session.py | 437 | def test_bad_resource_name_with_no_client_has_simple_err_msg(self): | CODE |
| LOW⚡ | tests/unit/s3/test_inject.py | 129 | def test_upload_file_proxies_to_meta_client(self): | CODE |
| LOW⚡ | tests/unit/s3/test_inject.py | 140 | def test_download_file_proxies_to_meta_client(self): | CODE |
| LOW⚡ | tests/unit/s3/test_inject.py | 193 | def test_upload_file_proxies_to_meta_client(self): | CODE |
| LOW⚡ | tests/unit/s3/test_inject.py | 204 | def test_download_file_proxies_to_meta_client(self): | CODE |
| LOW⚡ | tests/unit/s3/test_inject.py | 264 | def test_can_handle_missing_content_length(self): | CODE |
| LOW⚡ | tests/unit/s3/test_inject.py | 270 | def test_disable_threading_if_append_mode(caplog, tmp_path): | CODE |
| LOW⚡ | tests/unit/s3/test_inject.py | 278 | def test_threading_not_disabled_if_not_append_mode(caplog, tmp_path): | CODE |
| LOW⚡ | tests/unit/s3/test_inject.py | 286 | def test_threading_not_disabled_if_mode_non_string(caplog, tmp_path): | CODE |
| LOW | tests/unit/s3/test_inject.py | 25 | def test_inject_upload_download_file_to_client(self): | CODE |
| LOW | tests/unit/s3/test_inject.py | 31 | def test_upload_file_proxies_to_transfer_object(self): | CODE |
| LOW | tests/unit/s3/test_inject.py | 50 | def test_download_file_proxies_to_transfer_object(self): | CODE |
| LOW | tests/unit/s3/test_inject.py | 76 | def test_bucket_load_finds_bucket(self): | CODE |
| LOW | tests/unit/s3/test_inject.py | 91 | def test_bucket_load_doesnt_find_bucket(self): | CODE |
| LOW | tests/unit/s3/test_inject.py | 102 | def test_bucket_load_encounters_access_exception(self): | CODE |
| LOW | tests/unit/s3/test_inject.py | 110 | def test_bucket_load_encounters_other_exception(self): | CODE |
| LOW⚡ | tests/unit/s3/test_transfer.py | 47 | def test_create_transfer_manager(self): | CODE |
| LOW⚡ | tests/unit/s3/test_transfer.py | 55 | def test_create_transfer_manager_with_no_threads(self): | CODE |
| LOW⚡ | tests/unit/s3/test_transfer.py | 65 | def test_create_transfer_manager_with_default_config(self): | CODE |
| LOW⚡ | tests/unit/s3/test_transfer.py | 328 | def test_upload_wraps_callback(self): | CODE |
| LOW⚡ | tests/unit/s3/test_transfer.py | 336 | def test_download_wraps_callback(self): | CODE |
| 330 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL⚡ | tests/unit/s3/test_inject.py | 131 | self.bucket.meta.client.upload_file.assert_called_with( | CODE |
| CRITICAL⚡ | tests/unit/s3/test_inject.py | 142 | self.bucket.meta.client.download_file.assert_called_with( | CODE |
| CRITICAL⚡ | tests/unit/s3/test_inject.py | 195 | self.obj.meta.client.upload_file.assert_called_with( | CODE |
| CRITICAL⚡ | tests/unit/s3/test_inject.py | 206 | self.obj.meta.client.download_file.assert_called_with( | CODE |
| CRITICAL | tests/unit/s3/test_inject.py | 153 | self.bucket.meta.client.copy.assert_called_with( | CODE |
| CRITICAL | tests/unit/s3/test_inject.py | 166 | self.bucket.meta.client.upload_fileobj.assert_called_with( | CODE |
| CRITICAL | tests/unit/s3/test_inject.py | 178 | self.bucket.meta.client.download_fileobj.assert_called_with( | CODE |
| CRITICAL | tests/unit/s3/test_inject.py | 217 | self.obj.meta.client.copy.assert_called_with( | CODE |
| CRITICAL | tests/unit/s3/test_inject.py | 230 | self.obj.meta.client.upload_fileobj.assert_called_with( | CODE |
| CRITICAL | tests/unit/s3/test_inject.py | 242 | self.obj.meta.client.download_fileobj.assert_called_with( | CODE |
| CRITICAL⚡ | boto3/dynamodb/transform.py | 45 | self.meta.client.meta.events.register( | CODE |
| CRITICAL⚡ | boto3/dynamodb/transform.py | 54 | self.meta.client.meta.events.register( | CODE |
| CRITICAL⚡ | boto3/dynamodb/transform.py | 62 | self.meta.client.meta.events.register( | CODE |
| CRITICAL⚡ | boto3/dynamodb/transform.py | 70 | self.meta.client.meta.events.register( | CODE |
| CRITICAL⚡ | boto3/dynamodb/transform.py | 120 | self.meta.client.meta.events.register( | CODE |
| CRITICAL⚡ | boto3/dynamodb/transform.py | 126 | self.meta.client.meta.events.register( | CODE |
| CRITICAL⚡ | boto3/dynamodb/transform.py | 132 | self.meta.client.meta.events.register( | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/__init__.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/test_utils.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/test_crt.py | 1 | # Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/test_boto3.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/test_session.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/s3/test_inject.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/s3/test_transfer.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/resources/test_model.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/resources/test_response.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/resources/test_factory.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/resources/test_collection.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/resources/test_params.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/resources/test_collection_smoke.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/resources/test_action.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/dynamodb/test_transform.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/dynamodb/test_table.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/dynamodb/test_conditions.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/dynamodb/__init__.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/dynamodb/test_types.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_utils.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_resource.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_method.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_service.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_docstring.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/__init__.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_collection.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_subresource.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_client.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_attr.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_waiter.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/docs/test_action.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/ec2/__init__.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/ec2/test_deletetags.py | 1 | # Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/unit/ec2/test_createtags.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/integration/test_session.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/integration/test_dynamodb.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/integration/__init__.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/integration/test_sqs.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/integration/test_collections.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/integration/test_s3.py | 1 | # Copyright 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/test_utils.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/test_resource.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/test_crt.py | 1 | # Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/test_session.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/test_dynamodb.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/__init__.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/test_collection.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/test_smoke.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/test_ec2.py | 1 | # Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/test_s3.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/dynamodb/test_table.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/dynamodb/test_stubber_conditions.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/dynamodb/__init__.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/docs/test_dynamodb.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/docs/__init__.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/docs/test_smoke.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/docs/test_cloudwatch.py | 1 | # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/docs/test_ec2.py | 1 | # Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | tests/functional/docs/test_s3.py | 1 | # Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. | COMMENT |
| LOW | docs/source/conf.py | 1 | #!/usr/bin/env python3 | COMMENT |
| 45 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/integration/test_sqs.py | 25 | # Create a new resource | COMMENT |
| MEDIUM | tests/integration/test_collections.py | 57 | # Create a list of the first page of items. This tests that | COMMENT |
| MEDIUM | tests/integration/test_s3.py | 215 | # Create an object | COMMENT |
| MEDIUM | tests/integration/test_s3.py | 235 | # Create a bucket | COMMENT |
| MEDIUM | tests/integration/test_s3.py | 244 | # Create an object | COMMENT |
| MEDIUM | tests/integration/test_s3.py | 262 | # Create the multipart upload | COMMENT |
| MEDIUM | docs/source/conf.py | 11 | # This file is execfile()d with the current directory set to its containing dir. | COMMENT |
| MEDIUM | docs/source/_templates/partials/icons.html | 1 | {#This file is a modified version of "icons.html" file in furo version | CODE |
| MEDIUM | boto3/session.py | 68 | # Create a new default session | COMMENT |
| MEDIUM | boto3/session.py | 465 | # Creating a new resource instance requires the low-level client | COMMENT |
| MEDIUM | boto3/session.py | 489 | # Create a ServiceContext object to serve as a reference to | COMMENT |
| MEDIUM | boto3/session.py | 500 | # Create the service resource class. | COMMENT |
| MEDIUM | boto3/resources/factory.py | 144 | # Create the name based on the requested service and resource | COMMENT |
| MEDIUM | boto3/resources/factory.py | 552 | # Create the action in in this closure but before the ``do_action`` | COMMENT |
| MEDIUM | boto3/resources/factory.py | 568 | # Create the docstring for the load/reload methods. | COMMENT |
| MEDIUM | boto3/resources/model.py | 525 | # Create a relationship definition and attach it | COMMENT |
| MEDIUM | boto3/resources/collection.py | 404 | # Create the batch actions for a collection | COMMENT |
| MEDIUM | boto3/resources/base.py | 98 | # Create a default client if none was passed | COMMENT |
| MEDIUM | boto3/dynamodb/conditions.py | 305 | """This class is used to build condition expressions with placeholders""" | STRING |
| MEDIUM | boto3/dynamodb/transform.py | 256 | # Create a conditional expression string with placeholders | COMMENT |
| MEDIUM | boto3/docs/service.py | 110 | # Create a new DocumentStructure for each Service Resource and add contents. | COMMENT |
| MEDIUM | boto3/docs/service.py | 163 | # Create a new DocumentStructure for each Resource and add contents. | COMMENT |
| MEDIUM | boto3/docs/resource.py | 150 | # Create a new DocumentStructure for each identifier and add contents. | COMMENT |
| MEDIUM | boto3/docs/resource.py | 205 | # Create a new DocumentStructure for each attribute and add contents. | COMMENT |
| MEDIUM | boto3/docs/resource.py | 251 | # Create a new DocumentStructure for each reference and add contents. | COMMENT |
| MEDIUM | boto3/docs/waiter.py | 47 | # Create a new DocumentStructure for each waiter and add contents. | COMMENT |
| MEDIUM | boto3/docs/action.py | 70 | # Create a new DocumentStructure for each action and add contents. | STRING |
| MEDIUM | boto3/docs/collection.py | 44 | # Create a new DocumentStructure for each collection and add contents. | COMMENT |
| MEDIUM | boto3/docs/subresource.py | 48 | # Create a new DocumentStructure for each sub_resource and add contents. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | boto3/crt.py | 39 | logger = logging.getLogger(__name__) | CODE |
| LOW | boto3/s3/transfer.py | 156 | logger = logging.getLogger(__name__) | CODE |
| LOW | boto3/s3/inject.py | 52 | logger = logging.getLogger(__name__) | CODE |
| LOW | boto3/resources/factory.py | 25 | logger = logging.getLogger(__name__) | CODE |
| LOW | boto3/resources/action.py | 25 | logger = logging.getLogger(__name__) | CODE |
| LOW | boto3/resources/model.py | 30 | logger = logging.getLogger(__name__) | CODE |
| LOW | boto3/resources/collection.py | 25 | logger = logging.getLogger(__name__) | CODE |
| LOW | boto3/resources/base.py | 18 | logger = logging.getLogger(__name__) | CODE |
| LOW | boto3/dynamodb/table.py | 15 | logger = logging.getLogger(__name__) | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/unit/resources/test_collection_smoke.py | 51 | CODE | |
| LOW | boto3/resources/params.py | 51 | CODE | |
| LOW | boto3/resources/params.py | 100 | CODE | |
| LOW | boto3/resources/response.py | 32 | CODE | |
| LOW | boto3/resources/response.py | 78 | CODE | |
| LOW | boto3/resources/model.py | 495 | CODE | |
| LOW | boto3/dynamodb/types.py | 118 | CODE | |
| LOW | boto3/docs/utils.py | 44 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/unit/resources/test_collection_smoke.py | 21 | # Note that this list is not comprehensive. It may have to be updated | COMMENT |
| LOW | boto3/resources/action.py | 49 | # In the simplest case we just return the response, but if a | COMMENT |
| LOW | boto3/docs/attr.py | 35 | # operations that back the resource's shape. So we just set the | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | boto3/session.py | 233 | CODE | |
| LOW | boto3/session.py | 341 | CODE | |
| LOW | boto3/s3/transfer.py | 272 | CODE | |
| LOW | boto3/docs/method.py | 16 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/integration/test_s3.py | 75 | except Exception as e: | CODE |
| LOW | tests/integration/test_s3.py | 110 | except Exception as e: | CODE |
| LOW | tests/functional/dynamodb/test_table.py | 72 | except Exception: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | boto3/compat.py | 16 | CODE | |
| LOW | boto3/compat.py | 31 | CODE | |
| LOW | boto3/docs/utils.py | 16 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | boto3/resources/collection.py | 194 | # Iterate through items | STRING |
| LOW | boto3/resources/collection.py | 216 | # Iterate through items | STRING |