Skip to content

Commit

Permalink
last touches
Browse files Browse the repository at this point in the history
  • Loading branch information
hugsy committed Jan 25, 2024
1 parent 8e6eb02 commit 2b11d83
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gef.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ def update_gef(argv: List[str]) -> int:
sys.exit(1)


GDB_MIN_VERSION = (8, 0)
PYTHON_MIN_VERSION = (3, 6)
PYTHON_VERSION = sys.version_info[0:2]
GDB_VERSION : Tuple[int, int] = tuple(map(int, re.search(r"(\d+)[^\d]+(\d+)", gdb.VERSION).groups())) # type:ignore
GDB_MIN_VERSION: Tuple[int, int] = (8, 0)
PYTHON_MIN_VERSION: Tuple[int, int] = (3, 6)
PYTHON_VERSION: Tuple[int, int] = sys.version_info[0:2]
GDB_VERSION: Tuple[int, int] = tuple(map(int, re.search(r"(\d+)[^\d]+(\d+)", gdb.VERSION).groups())) # type:ignore

DEFAULT_PAGE_ALIGN_SHIFT = 12
DEFAULT_PAGE_SIZE = 1 << DEFAULT_PAGE_ALIGN_SHIFT
Expand Down

0 comments on commit 2b11d83

Please sign in to comment.