Current Path: > > opt > alt > python27 > lib64 > python2.7 > ctypes > macholib >
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
README.ctypes | File | 296 bytes | January 08 2025 10:43:31. | |
__init__.py | File | 154 bytes | January 08 2025 10:43:31. | |
__init__.pyc | File | 329 bytes | January 08 2025 10:43:31. | |
__init__.pyo | File | 329 bytes | January 08 2025 10:43:31. | |
dyld.py | File | 5128 bytes | January 08 2025 10:43:31. | |
dyld.pyc | File | 5995 bytes | January 08 2025 10:43:31. | |
dyld.pyo | File | 5789 bytes | January 08 2025 10:43:31. | |
dylib.py | File | 1828 bytes | January 08 2025 10:43:31. | |
dylib.pyc | File | 2367 bytes | January 08 2025 10:43:31. | |
dylib.pyo | File | 1785 bytes | January 08 2025 10:43:31. | |
fetch_macholib | File | 84 bytes | January 08 2025 10:43:31. | |
framework.py | File | 2201 bytes | January 08 2025 10:43:31. | |
framework.pyc | File | 2677 bytes | January 08 2025 10:43:31. | |
framework.pyo | File | 1927 bytes | January 08 2025 10:43:31. |
� �V~gc @ sV d Z d d l Z d g Z e j d � Z d � Z d � Z e d k rR e � n d S( s% Generic framework path manipulation i����Nt framework_infos� (?x) (?P<location>^.*)(?:^|/) (?P<name> (?P<shortname>\w+).framework/ (?:Versions/(?P<version>[^/]+)/)? (?P=shortname) (?:_(?P<suffix>[^_]+))? )$ c C s# t j | � } | s d S| j � S( s} A framework name can take one of the following four forms: Location/Name.framework/Versions/SomeVersion/Name_Suffix Location/Name.framework/Versions/SomeVersion/Name Location/Name.framework/Name_Suffix Location/Name.framework/Name returns None if not found, or a mapping equivalent to: dict( location='Location', name='Name.framework/Versions/SomeVersion/Name_Suffix', shortname='Name', version='SomeVersion', suffix='Suffix', ) Note that SomeVersion and Suffix are optional and may be None if not present N( t STRICT_FRAMEWORK_REt matcht Nonet groupdict( t filenamet is_framework( ( s>