We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b08f4b7 commit 9f92ed0Copy full SHA for 9f92ed0
pwnlib/elf/elf.py
@@ -713,14 +713,14 @@ def non_writable_segments(self):
713
714
@property
715
def libs(self):
716
- """Dictionary of {path: address} for every library loaded for this ELF."""
+ """Dictionary of ``{path: address}`` for every library loaded for this ELF."""
717
if self._libs is None:
718
self._populate_libraries()
719
return self._libs
720
721
722
def maps(self):
723
- """Dictionary of {name: address} for every mapping in this ELF's address space."""
+ """Dictionary of ``{name: address}`` for every mapping in this ELF's address space."""
724
if self._maps is None:
725
726
return self._maps
0 commit comments