From 687e07320e5ef1b249243008d229ef7026e3299f Mon Sep 17 00:00:00 2001 From: Ange Albertini <105304039+corkamig@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:31:40 +0200 Subject: [PATCH] Issue link --- capa/features/address.py | 1 + 1 file changed, 1 insertion(+) diff --git a/capa/features/address.py b/capa/features/address.py index f8ab6378..0d187a11 100644 --- a/capa/features/address.py +++ b/capa/features/address.py @@ -134,6 +134,7 @@ class RelativeVirtualAddress(int, Address): def __new__(cls, *args, **kwargs): #TODO(corkamig): Removal for v3.5.0 + #https://github.com/mandiant/capa/issues/3072 warnings.warn("RelativeVirtualAddress is deprecated - cf issue #3072", DeprecationWarning, stacklevel=2) return super().__new__(cls, *args, **kwargs)