🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 06:51:02 | PHP 8.1.34
📂
/ (Root)
/
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
pip
/
_vendor
/
rich
📍 /opt/imunify360/venv/lib/python3.11/site-packages/pip/_vendor/rich
🔄 Refresh
✏️
Editing: _stack.py
Read Only
from typing import List, TypeVar T = TypeVar("T") class Stack(List[T]): """A small shim over builtin list.""" @property def top(self) -> T: """Get top of stack.""" return self[-1] def push(self, item: T) -> None: """Push an item on to the stack (append in stack nomenclature).""" self.append(item)
💾 Save Changes
❌ Cancel