<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css"
        integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ=="
        crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
</html>
ó
š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>   /opt/alt/python27/lib64/python2.7/ctypes/macholib/framework.pyR       s    c          C   s   d  d  d  d  d  d „ }  d  S(   Nc         S   s%   t  d |  d | d | d | d | ƒ S(   Nt   locationt   namet	   shortnamet   versiont   suffix(   t   dict(   R   R   R	   R
   R   (    (    s>   /opt/alt/python27/lib64/python2.7/ctypes/macholib/framework.pyt   d-   s    (   R   (   R   (    (    s>   /opt/alt/python27/lib64/python2.7/ctypes/macholib/framework.pyt   test_framework_info,   s    t   __main__(   t   __doc__t   ret   __all__t   compileR   R    R   t   __name__(    (    (    s>   /opt/alt/python27/lib64/python2.7/ctypes/macholib/framework.pyt   <module>   s   				