🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 05:54:12 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
setuptools
/
_distutils
/
tests
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/setuptools/_distutils/tests
🔄 Refresh
✏️
Editing: unix_compat.py
Read Only
import sys try: import grp import pwd except ImportError: grp = pwd = None import pytest UNIX_ID_SUPPORT = grp and pwd UID_0_SUPPORT = UNIX_ID_SUPPORT and sys.platform != "cygwin" require_unix_id = pytest.mark.skipif( not UNIX_ID_SUPPORT, reason="Requires grp and pwd support" ) require_uid_0 = pytest.mark.skipif(not UID_0_SUPPORT, reason="Requires UID 0 support")
💾 Save Changes
❌ Cancel