Repository Analysis

bloomberg/memray

Memray is a memory profiler for Python

7.3 Low AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of bloomberg/memray, a Python project with 15,181 GitHub stars. SynthScan v2.0 examined 80,097 lines of code across 259 source files, recording 599 pattern matches distributed across 13 syntactic categories. The overall adjusted score of 7.3 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).

7.3
Adjusted Score
7.3
Raw Score
100%
Time Factor
2026-07-31
Last Push
15.2K
Stars
Python
Language
80.1K
Lines of Code
259
Files
599
Pattern Hits
2026-08-02
Scan Date
0.02
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

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.

CRITICAL 0HIGH 4MEDIUM 15LOW 580

Directory Score Breakdown

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.

Pattern Findings

The scanner identified 599 distinct pattern matches across 13 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.

Hyper-Verbose Identifiers446 hits · 385 pts
SeverityFileLineSnippetContext
LOWtests/test_utils.py10 def test_filters_for_valloc_and_free(self):CODE
LOWtests/test_utils.py21 def test_filters_based_on_addresses(self):CODE
LOWtests/test_utils.py33 def test_free_records_with_valid_addresses_that_dont_match_do_not_appear(self):CODE
LOWtests/test_utils.py47 def test_free_records_with_unmatched_addresses_do_not_appear(self):CODE
LOWtests/test_utils.py63 def test_holds_values_at_correct_names(self):CODE
LOWtests/conftest.py55def pytest_collection_modifyitems(config, items):CODE
LOWtests/utils.py15def filter_relevant_allocations(records, ranged=False):CODE
LOWtests/utils.py32def filter_relevant_pymalloc_allocations(records, size):CODE
LOWtests/unit/test_stats_reporter.py22def _generate_mock_allocations(CODE
LOWtests/unit/test_stats_reporter.py129def test_get_histogram_databins():CODE
LOWtests/unit/test_stats_reporter.py164def test_get_histogram_databins_rounding():CODE
LOWtests/unit/test_stats_reporter.py198def test_get_histogram_over_bound():CODE
LOWtests/unit/test_stats_reporter.py226def test_get_histogram_all_allocations_same_size():CODE
LOWtests/unit/test_stats_reporter.py248def test_get_histogram_databins_invalid_bins():CODE
LOWtests/unit/test_stats_reporter.py292def test_draw_histogram_smaller_scale_factor():CODE
LOWtests/unit/test_stats_reporter.py332def test_draw_histogram_invalid_input():CODE
LOWtests/unit/test_reader.py12def test_rejects_different_header_magic(tmp_path):CODE
LOWtests/unit/test_reader.py33def test_rejects_different_header_version(tmp_path):CODE
LOWtests/unit/test_reader.py54def test_filereader_fails_to_open_file(tmp_path):CODE
LOWtests/unit/test_templates.py22def test_title_for_regular_report(kind, show_memory_leaks, inverted, expected):CODE
LOWtests/unit/test_templates.py35def test_html_report_escaping(kind):CODE
LOWtests/unit/test_high_water_mark_aggregator.py31def contribution_by_location_and_allocator(allocations):CODE
LOWtests/unit/test_high_water_mark_aggregator.py44def test_no_allocations_at_start():CODE
LOWtests/unit/test_high_water_mark_aggregator.py56def test_one_allocation_is_both_high_water_mark_and_leaked():CODE
LOWtests/unit/test_high_water_mark_aggregator.py77def test_one_freed_allocation_is_high_water_mark_but_not_leaked():CODE
LOWtests/unit/test_high_water_mark_aggregator.py101def test_zero_byte_allocation():CODE
LOWtests/unit/test_high_water_mark_aggregator.py123def test_freeing_one_of_two_high_water_mark_allocations_at_the_same_location():CODE
LOWtests/unit/test_high_water_mark_aggregator.py148def test_freeing_one_of_two_high_water_mark_allocations_at_different_locations():CODE
LOWtests/unit/test_high_water_mark_aggregator.py180def test_allocation_freed_before_high_water_mark():CODE
LOWtests/unit/test_high_water_mark_aggregator.py205def test_allocation_made_and_leaked_after_high_water_mark():CODE
LOWtests/unit/test_high_water_mark_aggregator.py237def test_allocation_made_and_freed_after_high_water_mark():CODE
LOWtests/unit/test_high_water_mark_aggregator.py271def test_allocation_made_and_freed_between_high_water_marks():CODE
LOWtests/unit/test_high_water_mark_aggregator.py309def test_allocation_made_between_high_water_marks_and_freed_after_high_water_mark():CODE
LOWtests/unit/test_high_water_mark_aggregator.py348def test_allocation_made_between_high_water_marks_and_leaked():CODE
LOWtests/unit/test_high_water_mark_aggregator.py381def test_different_allocators_at_one_location():CODE
LOWtests/unit/test_high_water_mark_aggregator.py407def test_same_stack_in_different_threads():CODE
LOWtests/unit/test_high_water_mark_aggregator.py439def test_completely_freed_range():CODE
LOWtests/unit/test_high_water_mark_aggregator.py487def test_shrunk_then_freed_range():CODE
LOWtests/unit/test_high_water_mark_aggregator.py538def test_split_then_freed_range():CODE
LOWtests/unit/test_high_water_mark_aggregator.py565def test_reporting_on_true_high_water_mark_that_was_in_a_past_snapshot():CODE
LOWtests/unit/test_high_water_mark_aggregator.py609def test_one_allocation_before_first_snapshot():CODE
LOWtests/unit/test_high_water_mark_aggregator.py632def test_one_allocation_after_first_snapshot():CODE
LOWtests/unit/test_high_water_mark_aggregator.py656def test_one_allocation_freed_at_high_water_mark_in_second_snapshot():CODE
LOWtests/unit/test_high_water_mark_aggregator.py682def test_two_allocations_in_different_snapshots():CODE
LOWtests/unit/test_high_water_mark_aggregator.py720def test_one_allocation_freed_before_high_water_mark_in_second_snapshot():CODE
LOWtests/unit/test_high_water_mark_aggregator.py760def test_allocations_freed_over_two_snapshots():CODE
LOWtests/unit/test_high_water_mark_aggregator.py792def test_allocations_freed_over_two_non_adjacent_snapshots():CODE
LOWtests/unit/test_high_water_mark_aggregator.py826def test_allocation_after_high_water_mark_in_current_snapshot():CODE
LOWtests/unit/test_high_water_mark_aggregator.py853def test_allocation_after_high_water_mark_in_historical_snapshot():CODE
LOWtests/unit/test_high_water_mark_aggregator.py881def test_allocation_and_deallocation_after_high_water_mark():CODE
LOWtests/unit/test_high_water_mark_aggregator.py912def test_allocation_and_deallocation_across_multiple_snapshots():CODE
LOWtests/unit/test_high_water_mark_aggregator.py946def test_allocation_and_deallocation_across_multiple_snapshots_with_other_allocators():CODE
LOWtests/unit/test_transform_reporter.py66 def test_single_native_allocation(self):CODE
LOWtests/unit/test_transform_reporter.py100 def test_multiple_allocations(self):CODE
LOWtests/unit/test_transform_reporter.py241 def test_single_native_allocation(self):CODE
LOWtests/unit/test_transform_reporter.py271 def test_multiple_allocations(self):CODE
LOWtests/unit/test_transform_reporter.py344 def test_multiple_stack_frames(self):CODE
LOWtests/unit/test_transform_reporter.py418 def test_stacks_are_written_root_to_leaf(self):CODE
LOWtests/unit/test_transform_reporter.py455 def test_identical_stacks_are_aggregated(self):CODE
LOWtests/unit/test_transform_reporter.py502 def test_stacks_preserve_allocation_order(self):CODE
386 more matches not shown…
Over-Commented Block44 hits · 44 pts
SeverityFileLineSnippetContext
LOWCMakeLists.txt41add_compile_definitions(_FILE_OFFSET_BITS=64)COMMENT
LOWasv.conf.json21 // Customizable commands for building, installing, andCOMMENT
LOWasv.conf.json41COMMENT
LOWasv.conf.json61 // dependency packages in the specified orderCOMMENT
LOWasv.conf.json81 // from the set to test. Each entry is a dictionary containing additionalCOMMENT
LOWasv.conf.json101 // "exclude": [COMMENT
LOWasv.conf.json121 // The directory (relative to the current directory) that raw benchmarkCOMMENT
LOWasv.conf.json141 // regressions. The default is to start from the first commitCOMMENT
LOWtests/integration/native_extension/native_ext.c1#define PY_SSIZE_T_CLEANCOMMENT
LOWdocs/conf.py81# -- Improving man page generation ----------------------------------------------------COMMENT
LOWbenchmarks/benchmarking/cases/regex_v8_base.py1# Copyright 2009 the V8 project authors. All rights reserved.COMMENT
LOWbenchmarks/benchmarking/cases/regex_v8_base.py21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOTCOMMENT
LOWbenchmarks/benchmarking/cases/go_base.py421# text = input('?').strip()COMMENT
LOWbenchmarks/benchmarking/cases/regex_v8_memray.py1# Copyright 2009 the V8 project authors. All rights reserved.COMMENT
LOWbenchmarks/benchmarking/cases/regex_v8_memray.py21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOTCOMMENT
LOWbenchmarks/benchmarking/cases/go_memray.py421COMMENT
LOW…arking/cases/docutils_data/docs/dev/enthought-plan.txt181Python doesn't have multi-line comments; only single-line. A similarCOMMENT
LOWsrc/memray/_memray/source.cpp1#define PY_SSIZE_T_CLEANCOMMENT
LOWsrc/memray/_memray/record_reader.cpp1#define __STDC_FORMAT_MACROSCOMMENT
LOWsrc/memray/_memray/sink.cpp1#define PY_SSIZE_T_CLEANCOMMENT
LOWsrc/memray/_memray/hooks.h1#pragma onceCOMMENT
LOWsrc/memray/_memray/hooks.h21#include <dlfcn.h>COMMENT
LOWsrc/memray/_memray/macho_shenanigans.cpp81}COMMENT
LOWsrc/memray/_memray/macho_shenanigans.cpp101 // This means that the address of the GOT entry can be calculated as:COMMENT
LOWsrc/memray/_memray/macho_shenanigans.cpp181 static_assert(1 << 12 == 4 * 1024);COMMENT
LOWsrc/memray/_memray/elf_utils.h1#pragma onceCOMMENT
LOWsrc/memray/_memray/record_writer.cpp1#include "record_writer.h"COMMENT
LOWsrc/memray/_memray/record_writer.cpp101 // LRU Pointer Cache SystemCOMMENT
LOWsrc/memray/_memray/record_writer.cpp381 //COMMENT
LOWsrc/memray/_memray/record_reader.h1#pragma onceCOMMENT
LOWsrc/memray/_memray/tracking_api.cpp1#define PY_SSIZE_T_CLEANCOMMENT
LOWsrc/memray/_memray/tracking_api.cpp161// constructed. That's normally great, but we need to prevent that fromCOMMENT
LOWsrc/memray/_memray/tracking_api.cpp221 // Threads' initial stacks can have calls to sys.settrace tracingCOMMENT
LOWsrc/memray/_memray/snapshot.cpp341UsageHistory::recordContributionsToCompletedSnapshots(COMMENT
LOWsrc/memray/_memray/tracking_api.h1#pragma onceCOMMENT
LOWsrc/memray/_memray/tracking_api.h21COMMENT
LOWsrc/memray/_memray/native_resolver.h1#pragma onceCOMMENT
LOWsrc/memray/_memray/macho_utils.h1#pragma onceCOMMENT
LOWsrc/memray/_memray/lz4_stream.h1// Copyright (c) 2015, Kasper Laudrup <laudrup@stacktrace.dk>COMMENT
LOWsrc/memray/_memray/lz4_stream.h21// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FORCOMMENT
LOWsrc/memray/_memray/snapshot.h1#pragma onceCOMMENT
LOWsrc/memray/_memray/snapshot.h321 size_t current_peak) const;COMMENT
LOWsrc/memray/_memray/records.h1#pragma onceCOMMENT
LOWsrc/memray/_memray/records.h21const int CURRENT_HEADER_VERSION = 12;COMMENT
Unused Imports35 hits · 35 pts
SeverityFileLineSnippetContext
LOWbenchmarks/benchmarking/cases/raytrace_memray.py15CODE
LOWbenchmarks/benchmarking/cases/json_dumps_base.py2CODE
LOWbenchmarks/benchmarking/cases/docutils_html_base.py7CODE
LOWbenchmarks/benchmarking/cases/docutils_html_base.py12CODE
LOWsrc/memray/_metadata.py1CODE
LOWsrc/memray/__init__.py1CODE
LOWsrc/memray/__init__.py2CODE
LOWsrc/memray/__init__.py3CODE
LOWsrc/memray/__init__.py4CODE
LOWsrc/memray/__init__.py5CODE
LOWsrc/memray/__init__.py6CODE
LOWsrc/memray/__init__.py7CODE
LOWsrc/memray/__init__.py8CODE
LOWsrc/memray/__init__.py9CODE
LOWsrc/memray/__init__.py10CODE
LOWsrc/memray/__init__.py11CODE
LOWsrc/memray/__init__.py12CODE
LOWsrc/memray/__init__.py13CODE
LOWsrc/memray/__init__.py14CODE
LOWsrc/memray/__init__.py15CODE
LOWsrc/memray/__init__.py16CODE
LOWsrc/memray/_test.py4CODE
LOWsrc/memray/_test.py5CODE
LOWsrc/memray/_test.py6CODE
LOWsrc/memray/_test.py7CODE
LOWsrc/memray/_test.py8CODE
LOWsrc/memray/_test.py9CODE
LOWsrc/memray/_test.py10CODE
LOWsrc/memray/_test.py11CODE
LOWsrc/memray/_test.py12CODE
LOWsrc/memray/_test.py13CODE
LOWsrc/memray/_test.py14CODE
LOWsrc/memray/_test.py15CODE
LOWsrc/memray/commands/attach.py1CODE
LOWsrc/memray/reporters/tree.py18CODE
Deep Nesting29 hits · 29 pts
SeverityFileLineSnippetContext
LOWtests/utils.py15CODE
LOWtests/utils.py32CODE
LOWtests/integration/test_native_tracking.py23CODE
LOWtests/integration/test_socket.py362CODE
LOWtests/integration/test_attach.py167CODE
LOWbenchmarks/benchmarking/cases/meteor_context_base.py113CODE
LOWbenchmarks/benchmarking/cases/meteor_context_base.py157CODE
LOWbenchmarks/benchmarking/cases/meteor_context_memray.py117CODE
LOWbenchmarks/benchmarking/cases/meteor_context_memray.py161CODE
LOWbenchmarks/benchmarking/cases/hexion_base.py234CODE
LOWbenchmarks/benchmarking/cases/hexion_base.py374CODE
LOWbenchmarks/benchmarking/cases/hexion_base.py148CODE
LOWbenchmarks/benchmarking/cases/go_base.py43CODE
LOWbenchmarks/benchmarking/cases/go_base.py69CODE
LOWbenchmarks/benchmarking/cases/go_base.py240CODE
LOWbenchmarks/benchmarking/cases/go_base.py258CODE
LOWbenchmarks/benchmarking/cases/hexion_memray.py237CODE
LOWbenchmarks/benchmarking/cases/hexion_memray.py377CODE
LOWbenchmarks/benchmarking/cases/hexion_memray.py151CODE
LOWbenchmarks/benchmarking/cases/go_memray.py47CODE
LOWbenchmarks/benchmarking/cases/go_memray.py73CODE
LOWbenchmarks/benchmarking/cases/go_memray.py244CODE
LOWbenchmarks/benchmarking/cases/go_memray.py262CODE
LOWbenchmarks/benchmarking/cases/telco_memray.py35CODE
LOWsrc/memray/_ipython/flamegraph.py142CODE
LOWsrc/memray/commands/run.py40CODE
LOWsrc/memray/commands/run.py113CODE
LOWsrc/memray/commands/common.py141CODE
LOWsrc/memray/reporters/frame_tools.py38CODE
Self-Referential Comments7 hits · 21 pts
SeverityFileLineSnippetContext
MEDIUMtests/unit/test_reader.py18 # Create a valid allocation record fileCOMMENT
MEDIUMtests/unit/test_reader.py39 # Create a valid allocation record fileCOMMENT
MEDIUMtests/integration/test_object_tracking.py9# Define a decorator for tests that require Python 3.13+COMMENT
MEDIUMtests/integration/test_object_tracking.py15# Define a decorator for tests that verify version-check errors on older PythonCOMMENT
MEDIUMtests/integration/test_object_tracking.py49 # Create a tracker without reference tracking (should work on all versions)COMMENT
MEDIUMtests/integration/test_object_tracking.py65 # Create a tracker without reference trackingCOMMENT
MEDIUMtests/integration/test_object_tracking.py298 # Create an object in this threadCOMMENT
Decorative Section Separators5 hits · 21 pts
SeverityFileLineSnippetContext
MEDIUM…rks/benchmarking/cases/docutils_data/docs/dev/todo.txt807 # =================COMMENT
MEDIUMsrc/memray/_memray/record_writer.cpp383 // ┌─┬─────┬─────┐COMMENT
MEDIUMsrc/memray/_memray/record_writer.cpp385 // └─┴─────┴─────┘COMMENT
MEDIUMsrc/memray/_memray/record_writer.cpp390 // │ └──────── Pointer cache index (0-15):COMMENT
MEDIUMsrc/memray/_memray/record_writer.cpp393 // └──────────── Record type marker (always 1 for ALLOCATION)COMMENT
Cross-File Repetition4 hits · 20 pts
SeverityFileLineSnippetContext
HIGHsrc/memray/_ipython/flamegraph.py0report temporary allocations, as opposed to leaked allocations or high watermark allocations. an allocation is considereSTRING
HIGHsrc/memray/commands/tree.py0report temporary allocations, as opposed to leaked allocations or high watermark allocations. an allocation is considereSTRING
HIGHsrc/memray/commands/summary.py0report temporary allocations, as opposed to leaked allocations or high watermark allocations. an allocation is considereSTRING
HIGHsrc/memray/commands/common.py0report temporary allocations, as opposed to leaked allocations or high watermark allocations. an allocation is considereSTRING
Modern Structural Boilerplate7 hits · 7 pts
SeverityFileLineSnippetContext
LOWsrc/memray/__init__.py18__all__ = [CODE
LOWsrc/memray/_test.py59__all__ = [CODE
LOWsrc/memray/_ipython/__init__.py10__all__ = ["load_ipython_extension"]CODE
LOWsrc/memray/reporters/tree.py95 async def update_text_area(self) -> None:CODE
LOWsrc/memray/reporters/_textual_hacks.py23def update_key_description(bindings: Bindings, key: str, description: str) -> None:CODE
LOWsrc/memray/reporters/tui.py626 def update_label(self) -> None:CODE
LOWsrc/memray/reporters/tui.py684 def update_sort_key(self, col_number: int) -> None:CODE
Overly Generic Function Names9 hits · 7 pts
SeverityFileLineSnippetContext
LOWtests/integration/test_tracking.py789 def test_function():CODE
LOWtests/integration/test_tracking.py830 def test_function():CODE
LOWtests/integration/test_tracking.py862 def test_function():CODE
LOWtests/integration/test_tracking.py960 def test_function():CODE
LOWtests/integration/test_tracking.py985 def test_function():CODE
LOWtests/integration/test_tracking.py438 def test_function():STRING
LOWtests/integration/test_tracking.py475 def test_function():STRING
LOWtests/integration/test_tracking.py513 def test_function():STRING
LOWdocs/tutorials/exercise_2/holding_onto_memory.py35def process_data() -> np.ndarray:CODE
Fake / Example Data4 hits · 6 pts
SeverityFileLineSnippetContext
LOW…mray/reporters/templates/assets/temporal_flamegraph.js9 */t=e.nmd(t),function(){var i,o="Expected a function",u="__lodash_hash_undefined__",a="__lodash_placeholder__",c=16,l=3COMMENT
LOWsrc/memray/reporters/templates/assets/table.js9 */n=r.nmd(n),function(){var u,i="Expected a function",o="__lodash_hash_undefined__",a="__lodash_placeholder__",f=16,c=3COMMENT
LOWsrc/memray/reporters/templates/assets/flamegraph.js9 */t=e.nmd(t),function(){var i,o="Expected a function",u="__lodash_hash_undefined__",a="__lodash_placeholder__",c=16,f=3COMMENT
LOW…memray/reporters/templates/assets/flamegraph_common.js9 */t=r.nmd(t),function(){var i,u="Expected a function",o="__lodash_hash_undefined__",a="__lodash_placeholder__",f=16,c=3COMMENT
AI Slop Vocabulary3 hits · 6 pts
SeverityFileLineSnippetContext
MEDIUMpackage-lock.json6263 "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz",CODE
MEDIUMpackage-lock.json11827 "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.2.tgz",CODE
LOWsrc/memray/_ipython/flamegraph.py151 # It already printed a message, just return control to IPython.COMMENT
Excessive Try-Catch Wrapping4 hits · 4 pts
SeverityFileLineSnippetContext
LOWtests/integration/test_attach.py192 except Exception:STRING
LOWsrc/memray/commands/attach.py268 except Exception as exc:CODE
LOWsrc/memray/commands/attach.py283 except Exception as exc:STRING
MEDIUMsrc/memray/commands/attach.py265def thread_body():CODE
AI Structural Patterns2 hits · 2 pts
SeverityFileLineSnippetContext
LOWtests/unit/test_tui_reporter.py161CODE
LOW…/tutorials/solutions/exercise_2/holding_onto_memory.py56CODE