From dd78db84765d908c6eac58e7fc2473edacf3e056 Mon Sep 17 00:00:00 2001 From: k4lizen <124312252+k4lizen@users.noreply.github.com> Date: Mon, 2 Feb 2026 14:16:20 +0100 Subject: [PATCH] [gdb] `Value.address` can be `None` (#15355) --- stubs/gdb/gdb/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stubs/gdb/gdb/__init__.pyi b/stubs/gdb/gdb/__init__.pyi index d533a95e3..2c0a12c8b 100644 --- a/stubs/gdb/gdb/__init__.pyi +++ b/stubs/gdb/gdb/__init__.pyi @@ -76,7 +76,7 @@ _ValueOrInt: TypeAlias = Value | int @disjoint_base class Value: - address: Value + address: Value | None is_optimized_out: bool type: Type dynamic_type: Type