Hacked By AnonymousFox
�
c��fA � �� � d Z g d�ZddlZ ddlmZ n# e$ r d� ZY nw xY w G d� de� � ZeZg fd�Z g fd �Z
d
� Zd� Zd� Z
d
� Zedk r+ddlZ e e ej dd� dddg� � � � dS dS )a� Parser for command line options.
This module helps scripts to parse the command line arguments in
sys.argv. It supports the same conventions as the Unix getopt()
function (including the special meanings of arguments of the form `-'
and `--'). Long options similar to those supported by GNU software
may be used as well via an optional third argument. This module
provides two functions and an exception:
getopt() -- Parse command line options
gnu_getopt() -- Like getopt(), but allow option and non-option arguments
to be intermixed.
GetoptError -- exception (class) raised with 'opt' attribute, which is the
option involved with the exception.
)�GetoptError�error�getopt�
gnu_getopt� N)�gettextc � � | S �N� )�ss �-/opt/alt/python311/lib64/python3.11/getopt.py�_r
) s � �Q�h� c �$ � e Zd ZdZdZdd�Zd� ZdS )r � c �Z � || _ || _ t � | ||� � d S r )�msg�opt� Exception�__init__)�selfr r s r r zGetoptError.__init__. s. � ����������4��c�*�*�*�*�*r c � � | j S r )r )r s r �__str__zGetoptError.__str__3 s � ��x�r N)r )�__name__�
__module__�__qualname__r r r r r
r r r r + sA � � � � � �
�C�
�C�+� +� +� +�
� � � � r r c �* � g }t |� � t d� � k r|g}nt |� � }| r�| d � d� � r�| d dk r�| d dk r| dd� } n�| d � d� � r,t || d dd� || dd� � � \ }} n+t || d dd� || dd� � � \ }} | r'| d � d� � r| d dk ��|| fS )a@ getopt(args, options[, long_options]) -> opts, args
Parses command line options and parameter list. args is the
argument list to be parsed, without the leading reference to the
running program. Typically, this means "sys.argv[1:]". shortopts
is the string of option letters that the script wants to
recognize, with options that require an argument followed by a
colon (i.e., the same format that Unix getopt() uses). If
specified, longopts is a list of strings with the names of the
long options which should be supported. The leading '--'
characters should not be included in the option name. Options
which require an argument should be followed by an equal sign
('=').
The return value consists of two elements: the first is a list of
(option, value) pairs; the second is the list of program arguments
left after the option list was stripped (this is a trailing slice
of the first argument). Each option-and-value pair returned has
the option as its first element, prefixed with a hyphen (e.g.,
'-x'), and the option argument as its second element, or an empty
string if the option has no argument. The options occur in the
list in the same order in which they were found, thus allowing
multiple occurrences. Long and short options may be mixed.
r r �-�--� N� )�type�list�
startswith�do_longs� do_shorts)�args� shortopts�longopts�optss r r r 8 s0 � �6 �D��H�~�~��b���!�!��:�����>�>��
� K�4��7�%�%�c�*�*� K�t�A�w�#�~�~���7�d�?�?�����8�D����7���d�#�#� K�!�$��Q������X�t�A�B�B�x�H�H�J�D�$�$�"�4��a������i��a�b�b��J�J�J�D�$� � K�4��7�%�%�c�*�*� K�t�A�w�#�~�~� ��:�r c � � g }g }t |t � � r|g}nt |� � }|� d� � r
|dd� }d}n$t j � d� � rd}nd}| r�| d dk r|| dd� z
}n�| d dd � dk r,t || d d d� || dd� � � \ }} ny| d dd� d
k r8| d d
k r,t || d dd� || dd� � � \ }} n-|r|| z
}n'|� | d � � | dd� } | ��||fS )a getopt(args, options[, long_options]) -> opts, args
This function works like getopt(), except that GNU style scanning
mode is used by default. This means that option and non-option
arguments may be intermixed. The getopt() function stops
processing options as soon as a non-option argument is
encountered.
If the first character of the option string is `+', or if the
environment variable POSIXLY_CORRECT is set, then option
processing stops as soon as a non-option argument is encountered.
�+r NT�POSIXLY_CORRECTFr r r r )
�
isinstance�strr"