ACC SHELL
Path : /usr/lib/python/ |
|
Current File : //usr/lib/python/getopt.pyc |
Ñò
nÄMc @ s» d Z d d d d g Z d d k Z d e f d „ ƒ YZ e Z g d „ Z g d „ Z d
„ Z d „ Z d „ Z
d
„ Z e d j o. d d k
Z
e e
i d d d d g ƒ GHn d S( sŠ 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.
t GetoptErrort errort getoptt
gnu_getoptiÿÿÿÿNc B s) e Z d Z d Z d d „ Z d „ Z RS( t c C s) | | _ | | _ t i | | | ƒ d S( N( t msgt optt Exceptiont __init__( t selfR R ( ( s /usr/lib/python2.6/getopt.pyR * s c C s | i S( N( R ( R ( ( s /usr/lib/python2.6/getopt.pyt __str__/ s ( t __name__t
__module__R R R R
( ( ( s /usr/lib/python2.6/getopt.pyR ' s c C sü g } t | ƒ t d ƒ j o
| g } n
t | ƒ } x· | o¯ | d i d ƒ o› | d d j oŠ | d d j o | d } Pn | d i d ƒ o+ t | | d d | | d ƒ \ } } q; t | | d d | | d ƒ \ } } q; W| | f S( s@ 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 i t -s --i i ( t typet listt
startswitht do_longst do_shorts( t argst shortoptst longoptst opts( ( s /usr/lib/python2.6/getopt.pyR 4 s
,
+,c C sj g } g } t | t ƒ o
| g } n
t | ƒ } | i d ƒ o | d } t } n$ t i i d ƒ o
t } n t } xá | oÙ | d d j o | | d 7} Pn | d d d j o+ t | | d d | | d ƒ \ } } q | d d d j o+ t
| | d d | | d ƒ \ } } q | o | | 7} Pq | i | d ƒ | d } q W| | f S( s 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.
t +i t POSIXLY_CORRECTi s --i R
( t
isinstancet strR R t Truet ost environt gett FalseR R t append( R R R R t prog_argst all_options_first( ( s /usr/lib/python2.6/getopt.pyR _ s4
++
c C sò y | i d ƒ } Wn t j
o
d } n X| | | | d } } t | | ƒ \ } } | oH | d j o7 | p t d | | ƒ ‚ n | d | d } } qÊ n | o t d | | ƒ ‚ n | i d | | p d f ƒ | | f S( Nt =i s option --%s requires argumenti s% option --%s must not have an arguments --R ( t indext
ValueErrort Nonet
long_has_argsR R ( R R R R t it optargt has_arg( ( s /usr/lib/python2.6/getopt.pyR ‘ s
c C s g } | D]! } | i | ƒ o | | q q ~ } | p t d | | ƒ ‚ n | | j o t | f S| d | j o t | f St | ƒ d j o t d | | ƒ ‚ n t | ƒ d j p t ‚ | d } | i d ƒ } | o | d } n | | f S( Ns option --%s not recognizedR# i s option --%s not a unique prefixi iÿÿÿÿ( R R R R t lent AssertionErrort endswith( R R t _[1]t ot
possibilitiest unique_matchR* ( ( s /usr/lib/python2.6/getopt.pyR' § s 5
c C s¶ x© | d j o› | d | d } } t | | ƒ oU | d j o7 | p t d | | ƒ ‚ n | d | d } } n | d } } n d } | i d | | f ƒ q W| | f S( NR i i s option -%s requires argumentR
( t
short_has_argR R ( R t optstringR R R R) ( ( s /usr/lib/python2.6/getopt.pyR ¼ s
c C sk xQ t t | ƒ ƒ D]= } | | | j o
d j n o | i d | d ƒ Sq Wt d | | ƒ ‚ d S( Nt :i s option -%s not recognized( t rangeR+ R R ( R R R( ( ( s /usr/lib/python2.6/getopt.pyR2 Ë s
"t __main__i s a:bs alpha=t beta( t __doc__t __all__R R R R R R R R' R R2 R t syst argv( ( ( s /usr/lib/python2.6/getopt.pyt <module> s +2
ACC SHELL 2018