From 715ed1f9c212dd0f8e812d96dc2b08b09efb49b3 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Tue, 27 Jan 2026 17:14:31 +0900 Subject: [PATCH] Docblocks update in in iterator handling fingerprint --- src/corelibs/iterator_handling/fingerprint.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/corelibs/iterator_handling/fingerprint.py b/src/corelibs/iterator_handling/fingerprint.py index 8b828d5..932cd62 100644 --- a/src/corelibs/iterator_handling/fingerprint.py +++ b/src/corelibs/iterator_handling/fingerprint.py @@ -9,6 +9,7 @@ from typing import Any, cast, Sequence def hash_object(obj: Any) -> str: """ + RECOMMENDED for new use Create a hash for any dict or list with mixed key types Arguments: @@ -48,7 +49,7 @@ def dict_hash_frozen(data: dict[Any, Any]) -> int: def dict_hash_crc(data: dict[Any, Any] | list[Any]) -> str: """ - Legacy Method, must be kept for fallback + LEGACY METHOD, must be kept for fallback, if used by other code, DO NOT CHANGE Create a sha256 hash over dict or list alternative for dict_hash_frozen