HEX

Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit - prohibited by configuration in /home/u547966/brikov.ru/www/wp-content/plugins/admin-menu-editor/menu-editor.php on line 745
Server: Apache
System: Linux 4.19.0-0.bpo.9-amd64 x86_64 at red40
User: u547966 (5490)
PHP: 5.3.29-mh2
Disabled: syslog, dl, popen, proc_open, proc_nice, proc_get_status, proc_close, proc_terminate, posix_mkfifo, chown, chgrp, accelerator_reset, opcache_reset, accelerator_get_status, opcache_get_status, pcntl_alarm, pcntl_fork, pcntl_waitpid, pcntl_wait, pcntl_wifexited, pcntl_wifstopped, pcntl_wifsignaled, pcntl_wifcontinued, pcntl_wexitstatus, pcntl_wtermsig, pcntl_wstopsig, pcntl_signal, pcntl_signal_dispatch, pcntl_get_last_error, pcntl_strerror, pcntl_sigprocmask, pcntl_sigwaitinfo, pcntl_sigtimedwait, pcntl_exec, pcntl_getpriority, pcntl_setpriority
Upload Files
File: //usr/lib/python3.5/__pycache__/cmd.cpython-35.pyc


Fa:@sXdZddlZddlZdgZdZejejdZGdddZdS)a	A generic class to build line-oriented command interpreters.

Interpreters constructed with this class obey the following conventions:

1. End of file on input is processed as the command 'EOF'.
2. A command is parsed out of each line by collecting the prefix composed
   of characters in the identchars member.
3. A command `foo' is dispatched to a method 'do_foo()'; the do_ method
   is passed a single argument consisting of the remainder of the line.
4. Typing an empty line repeats the last command.  (Actually, it calls the
   method `emptyline', which may be overridden in a subclass.)
5. There is a predefined `help' method.  Given an argument `topic', it
   calls the command `help_topic'.  With no arguments, it lists all topics
   with defined help_ functions, broken into up to three topics; documented
   commands, miscellaneous help topics, and undocumented commands.
6. The command '?' is a synonym for `help'.  The command '!' is a synonym
   for `shell', if a do_shell method exists.
7. If completion is enabled, completing commands will be done automatically,
   and completing of commands args is done by calling complete_foo() with
   arguments text, line, begidx, endidx.  text is string we are matching
   against, all returned matches must begin with it.  line is the current
   input line (lstripped), begidx and endidx are the beginning and end
   indexes of the text being matched, which could be used to provide
   different completion depending upon which position the argument is in.

The `default' method may be overridden to intercept commands for which there
is no do_ method.

The `completedefault' method may be overridden to intercept completions for
commands that have no complete_ method.

The data member `self.ruler' sets the character used to draw separator lines
in the help messages.  If empty, no ruler line is drawn.  It defaults to "=".

If the value of `self.intro' is nonempty when the cmdloop method is called,
it is printed out on interpreter startup.  This value may be overridden
via an optional argument to the cmdloop() method.

The data members `self.doc_header', `self.misc_header', and
`self.undoc_header' set the headers used for the help function's
listings of documented functions, miscellaneous topics, and undocumented
functions respectively.
NCmdz(Cmd) _c@s?eZdZdZeZeZdZdZ	dZ
dZdZdZ
dZdZd	Zd
ddddZdd
dZddZddZddZddZddZddZddZddZdd Zd!d"Zd#d$Zd%d&Zd'd(Zd)d*Z d+d,Z!d-d.d/Z"dS)0raA simple framework for writing line-oriented command interpreters.

    These are often useful for test harnesses, administrative tools, and
    prototypes that will later be wrapped in a more sophisticated interface.

    A Cmd instance or subclass instance is a line-oriented interpreter
    framework.  There is no good reason to instantiate Cmd itself; rather,
    it's useful as a superclass of an interpreter class you define yourself
    in order to inherit Cmd's methods and encapsulate action methods.

    =Nz(Documented commands (type help <topic>):zMiscellaneous help topics:zUndocumented commands:z*** No help on %sZtabcCs^|dk	r||_ntj|_|dk	r<||_ntj|_g|_||_dS)aInstantiate a line-oriented interpreter framework.

        The optional argument 'completekey' is the readline name of a
        completion key; it defaults to the Tab key. If completekey is
        not None and the readline module is available, command completion
        is done automatically. The optional arguments stdin and stdout
        specify alternate input and output file objects; if not specified,
        sys.stdin and sys.stdout are used.

        N)stdinsysstdoutcmdqueuecompletekey)selfrrr	r
/usr/lib/python3.5/cmd.py__init__Ls	zCmd.__init__cCs|j|jrt|jrtyCddl}|j|_|j|j|j|jdWnt	k
rsYnXz7|dk	r||_
|j
r|jjt
|j
dd}x|s|jr|jjd}n|jryt|j}Wqltk
rd}YqlXnS|jj|j|jj|jj}t|s]d}n|jd}|j|}|j|}|j||}qW|jWd|jr|jry ddl}|j|jWnt	k
rYnXXdS)zRepeatedly issue a prompt, accept input, parse an initial prefix
        off the received input, and dispatch to action methods, passing them
        the remainder of the line as argument.

        rNz
: complete
EOFz
)preloopuse_rawinputrreadlineZ
get_completerZ
old_completerZ
set_completercompleteZparse_and_bindImportErrorintror	writestrr
popinputpromptEOFErrorflushrlenrstripprecmdonecmdpostcmdpostloop)rrrstopliner
r
rcmdloopbsN

					

	
zCmd.cmdloopcCs|S)zHook method executed just before the command line is
        interpreted, but after the input prompt is generated and issued.

        r
)rr&r
r
rr!sz
Cmd.precmdcCs|S)z?Hook method executed just after a command dispatch is finished.r
)rr%r&r
r
rr#szCmd.postcmdcCsdS)z>Hook method executed once when the cmdloop() method is called.Nr
)rr
r
rrszCmd.preloopcCsdS)zYHook method executed once when the cmdloop() method is about to
        return.

        Nr
)rr
r
rr$szCmd.postloopcCs|j}|sdd|fS|ddkrFd|dd}nC|ddkrt|dr|d|dd}n
dd|fSdt|}}x-||kr|||jkr|d}qW|d|||dj}}|||fS)	zParse the line into a command name and a string containing
        the arguments.  Returns a tuple containing (command, args, line).
        'command' and 'args' may be None if the line couldn't be parsed.
        Nr?zhelp r!Zdo_shellzshell )striphasattrr
identchars)rr&incmdargr
r
r	parselines

"'z
Cmd.parselinecCs|j|\}}}|s(|jS|dkrA|j|S||_|dkr_d|_|dkrx|j|Syt|d|}Wntk
r|j|SYnX||SdS)ahInterpret the argument as though it had been typed in response
        to the prompt.

        This may be overridden, but should not normally need to be;
        see the precmd() and postcmd() methods for useful execution hooks.
        The return value is a flag indicating whether interpretation of
        commands by the interpreter should stop.

        Nrrdo_)r1	emptylinedefaultlastcmdgetattrAttributeError)rr&r/r0funcr
r
rr"s


		

z
Cmd.onecmdcCs|jr|j|jSdS)zCalled when an empty line is entered in response to the prompt.

        If this method is not overridden, it repeats the last nonempty
        command entered.

        N)r5r")rr
r
rr3s	z
Cmd.emptylinecCs|jjd|dS)zCalled on an input line when the command prefix is not recognized.

        If this method is not overridden, it prints an error message and
        returns.

        z*** Unknown syntax: %s
N)r	r)rr&r
r
rr4szCmd.defaultcGsgS)zMethod called to complete an input line when no command-specific
        complete_*() method is available.

        By default, it returns an empty list.

        r
)rignoredr
r
rcompletedefaultszCmd.completedefaultcs'd|fdd|jDS)Nr2cs/g|]%}|jr|ddqS)N)
startswith).0a)dotextr
r
<listcomp>s	z%Cmd.completenames.<locals>.<listcomp>)	get_names)rtextr9r
)r?r
completenamess
zCmd.completenamesc
Cs'|dkrddl}|j}|j}t|t|}|j|}|j|}|dkr|j|\}	}
}|	dkr|j}qyt|d|	}Wqt	k
r|j}YqXn	|j
}||||||_y|j|SWntk
r"dSYnXdS)zReturn the next possible completion for 'text'.

        If a command has not been entered, then complete against command list.
        Otherwise try to call complete_<command> to get list of completions.
        rNrZ	complete_)
rZget_line_bufferlstriprZ
get_begidxZ
get_endidxr1r:r6r7rCZcompletion_matches
IndexError)
rrBstaterZorigliner&ZstrippedZbegidxZendidxr/argsZfooZcompfuncr
r
rrs*
	
zCmd.completecCs
t|jS)N)dir	__class__)rr
r
rrAsz
Cmd.get_namescsHt|j}tfdd|jD}t||BS)Nc3s6|],}|jddr|ddVqdS)help_rN)r<)r=r>)rGr
r	<genexpr> sz$Cmd.complete_help.<locals>.<genexpr>)setrCrAlist)rrGZcommandsZtopicsr
)rGr
complete_helps%zCmd.complete_helpcCs6|ryt|d|}Wntk
ry>t|d|j}|rj|jjdt|dSWntk
rYnX|jjdt|j|fdSYnX|n{|j}g}g}i}x8|D]0}|dddkrd||dd<qW|jd}	x|D]}|dddkr'||	krRq'|}	|dd}
|
|kr|j	|
||
=q't||jr|j	|
q'|j	|
q'W|jjdt|j
|j|j|d	d
|j|j
t|jd	d
|j|j|d	d
dS)zEList available commands with "help" or detailed help with "help cmd".rJr2z%s
NrKrrr;P)r6r7__doc__r	rrnohelprAsortappend
doc_leaderprint_topics
doc_headermisc_headerrNkeysundoc_header)rr0r8docnamesZcmds_docZ
cmds_undochelpnameZprevnamer/r
r
rdo_help$sN

$	





%zCmd.do_helpcCsx|rt|jjdt||jrP|jjdt|jt||j||d|jjddS)Nz%s
rr)r	rrrulerr	columnize)rheaderZcmdsZcmdlenZmaxcolr
r
rrWRs	'zCmd.print_topicsrQcss|jjddSfddttD}|rgtddjtt|t}|dkr|jjdtd	dSxtdtD]}||d|}g}d
}xt|D]}	d	}
xNt|D]@}|||	}||kr"P|}
t|
t|
}
qW|j	|
||
d
7}||krPqW||krPqWt}d}d	g}xt|D]}g}xNt|D]@}	|||	}||krd}
n
|}
|j	|
qWx|r%|dr%|d=q
Wx5tt|D]!}	||	j
||	||	<q9W|jjdtdj|qWdS)zDisplay a list of strings as a compact set of columns.

        Each column is only as wide as necessary.
        Columns are separated by two spaces (one was not legible enough).
        z<empty>
Ncs)g|]}t|ts|qSr
)
isinstancer)r=r-)rNr
rr@ds	z!Cmd.columnize.<locals>.<listcomp>z list[i] not a string for i in %sz, rz%s
rrz  rg)r	rranger	TypeErrorjoinmaprmaxrUljust)rrNZdisplaywidthZ
nonstringssizeZnrowsZncolsZ	colwidthsZtotwidthcolZcolwidthrowr-xZtextsr
)rNrrbZsZ%

		
z
Cmd.columnize)#__name__
__module____qualname__rRPROMPTr
IDENTCHARSr,rar5rrVrXrYr[rSrrr'r!r#rr$r1r"r3r4r:rCrrArOr`rWrbr
r
r
rr4s<4
		.)	rRstringr__all__ruZ
ascii_lettersZdigitsrvrr
r
r
r<module>+s