diff --git a/gef.py b/gef.py index e89fcffda..ae2b75721 100644 --- a/gef.py +++ b/gef.py @@ -10585,9 +10585,6 @@ def parse_procfs_maps(cls) -> Generator[Section, None, None]: @classmethod def parse_gdb_info_proc_maps(cls) -> Generator[Section, None, None]: """Get the memory mapping from GDB's command `maintenance info sections` (limited info).""" - if GDB_VERSION < (11, 0): - raise AttributeError("Disregarding old format") - output = (gdb.execute("info proc mappings", to_string=True) or "") if not output: raise AttributeError