<!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>
ó
Afc           @   sW   d  Z  d d l Z d d l Z d d l Z d „  Z e d k rS e e j d ƒ n  d S(   s)  
For each argument on the command line, look for it in the set of all Unicode
names.  Arguments are treated as case-insensitive regular expressions, e.g.:

    % find-uname 'small letter a$' 'horizontal line'
    *** small letter a$ matches ***
    LATIN SMALL LETTER A (97)
    COMBINING LATIN SMALL LETTER A (867)
    CYRILLIC SMALL LETTER A (1072)
    PARENTHESIZED LATIN SMALL LETTER A (9372)
    CIRCLED LATIN SMALL LETTER A (9424)
    FULLWIDTH LATIN SMALL LETTER A (65345)
    *** horizontal line matches ***
    HORIZONTAL LINE EXTENSION (9135)
iÿÿÿÿNc   	      C   sö   g  } xU t  t j d ƒ D]@ } y& | j | t j t | ƒ ƒ f ƒ Wq t k
 rY q Xq Wx‘ |  D]‰ } t j	 | t j
 ƒ } g  | D]- \ } } | j | ƒ d  k	 r‡ | | f ^ q‡ } | re d G| Gd Gd GHx | D] } d | GHqØ Wqe qe Wd  S(   Ni   s   ***t   matchess   %s (%d)(   t   ranget   syst
   maxunicodet   appendt   unicodedatat   namet   unichrt
   ValueErrort   ret   compilet   It   searcht   None(	   t   argst   unicode_namest   ixt   argt   patt   xt   yR    t   match(    (    s/   /usr/lib64/python2.7/Demo/scripts/find-uname.pyt   main   s    &'t   __main__i   (   t   __doc__R   R   R	   R   t   __name__t   argv(    (    (    s/   /usr/lib64/python2.7/Demo/scripts/find-uname.pyt   <module>   s   	