PATH:
usr
/
lib
/
python3.6
/
site-packages
/
setuptools
import platform import ctypes def windows_only(func): if platform.system() != 'Windows': return lambda *args, **kwargs: None return func @windows_only def hide_file(path): """ Set the hidden attribute on a file or directory. From http://stackoverflow.com/questions/19622133/ `path` must be text. """ __import__('ctypes.wintypes') SetFileAttributes = ctypes.windll.kernel32.SetFileAttributesW SetFileAttributes.argtypes = ctypes.wintypes.LPWSTR, ctypes.wintypes.DWORD SetFileAttributes.restype = ctypes.wintypes.BOOL FILE_ATTRIBUTE_HIDDEN = 0x02 ret = SetFileAttributes(path, FILE_ATTRIBUTE_HIDDEN) if not ret: raise ctypes.WinError()
[-] sandbox.py
[edit]
[-] depends.py
[edit]
[-] py33compat.py
[edit]
[-] pep425tags.py
[edit]
[+]
..
[-] config.py
[edit]
[-] py27compat.py
[edit]
[+]
extern
[-] script.tmpl
[edit]
[-] glibc.py
[edit]
[-] package_index.py
[edit]
[-] windows_support.py
[edit]
[-] glob.py
[edit]
[-] wheel.py
[edit]
[-] launch.py
[edit]
[-] dist.py
[edit]
[+]
_vendor
[-] site-patch.py
[edit]
[-] py31compat.py
[edit]
[-] py36compat.py
[edit]
[+]
__pycache__
[-] msvc.py
[edit]
[-] archive_util.py
[edit]
[-] monkey.py
[edit]
[-] version.py
[edit]
[-] unicode_utils.py
[edit]
[-] namespaces.py
[edit]
[-] build_meta.py
[edit]
[-] __init__.py
[edit]
[-] ssl_support.py
[edit]
[+]
command
[-] lib2to3_ex.py
[edit]
[-] script (dev).tmpl
[edit]
[-] dep_util.py
[edit]
[-] extension.py
[edit]