From a14b463541c66b61dc2937010a0c5e870a62aa57 Mon Sep 17 00:00:00 2001 From: Ange Albertini <105304039+corkamig@users.noreply.github.com> Date: Mon, 1 Jun 2026 17:24:39 +0200 Subject: [PATCH] More information for RVA deprecation --- capa/features/address.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/capa/features/address.py b/capa/features/address.py index 1a0ef966..f8ab6378 100644 --- a/capa/features/address.py +++ b/capa/features/address.py @@ -133,7 +133,8 @@ class RelativeVirtualAddress(int, Address): """a memory address relative to a base address""" def __new__(cls, *args, **kwargs): - warnings.warn("RelativeVirtualAddress is deprecated", DeprecationWarning, stacklevel=2) + #TODO(corkamig): Removal for v3.5.0 + warnings.warn("RelativeVirtualAddress is deprecated - cf issue #3072", DeprecationWarning, stacklevel=2) return super().__new__(cls, *args, **kwargs) def __repr__(self):