ÿØÿà JFIF    ÿÛ „ ( %!1!%*+...983,7(-.- lib64/python2.7/cmd.pyc000064400000033327152343510040010521 0ustar00 zfc@sLdZddlZdgZdZejejdZdddYZdS(s 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. These interpreters use raw_input; thus, if the readline module is loaded, they automatically support Emacs-like command history and editing features. iNtCmds(Cmd) t_cBseZdZeZeZdZdZdZ dZ dZ dZ dZdZdZdddd Zdd Zd Zd Zd ZdZdZdZdZdZdZdZdZdZdZdZ dZ!ddZ"RS(sA 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. t=ts(Documented commands (type help ):sMiscellaneous help topics:sUndocumented commands:s*** No help on %sittabcCsjddl}|dk r$||_n |j|_|dk rH||_n |j|_g|_||_dS(sInstantiate 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. iN(tsystNonetstdintstdouttcmdqueuet completekey(tselfR RRR((s/usr/lib64/python2.7/cmd.pyt__init__Os        cCs|j|jrv|jrvyCddl}|j|_|j|j|j|jdWqvt k rrqvXnz<|dk r||_ n|j r|j j t|j dnd}x|s|jr|jjd}n|jr yt|j}Wqstk rd}qsXnS|j j |j|j j|jj}t|sdd}n|jd}|j|}|j|}|j||}qW|jWd|jr|jry ddl}|j|jWqt k rqXnXdS(sRepeatedly 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. iNs : completes itEOFs (tpreloopt use_rawinputR treadlinet get_completert old_completert set_completertcompletetparse_and_bindt ImportErrorRtintroRtwritetstrR tpopt raw_inputtprompttEOFErrortflushRtlentrstriptprecmdtonecmdtpostcmdtpostloop(R RRtstoptline((s/usr/lib64/python2.7/cmd.pytcmdloopfsN                 cCs|S(sHook method executed just before the command line is interpreted, but after the input prompt is generated and issued. ((R R&((s/usr/lib64/python2.7/cmd.pyR!scCs|S(s?Hook method executed just after a command dispatch is finished.((R R%R&((s/usr/lib64/python2.7/cmd.pyR#scCsdS(s>Hook method executed once when the cmdloop() method is called.N((R ((s/usr/lib64/python2.7/cmd.pyRscCsdS(sYHook method executed once when the cmdloop() method is about to return. N((R ((s/usr/lib64/python2.7/cmd.pyR$scCs|j}|sdd|fS|ddkr@d|d}n@|ddkrt|drpd|d}qdd|fSndt|}}x-||kr|||jkr|d}qW|| ||j}}|||fS( sParse 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. it?shelp it!tdo_shellsshell N(tstripRthasattrRt identchars(R R&titntcmdtarg((s/usr/lib64/python2.7/cmd.pyt parselines  "cCs|j|\}}}|s(|jS|dkrA|j|S||_|dkrbd|_n|dkr{|j|Syt|d|}Wntk r|j|SX||SdS(shInterpret 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. R Rtdo_N(R2t emptylineRtdefaulttlastcmdtgetattrtAttributeError(R R&R0R1tfunc((s/usr/lib64/python2.7/cmd.pyR"s          cCs|jr|j|jSdS(sCalled 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(R6R"(R ((s/usr/lib64/python2.7/cmd.pyR4s cCs|jjd|dS(sCalled on an input line when the command prefix is not recognized. If this method is not overridden, it prints an error message and returns. s*** Unknown syntax: %s N(RR(R R&((s/usr/lib64/python2.7/cmd.pyR5scGsgS(sMethod called to complete an input line when no command-specific complete_*() method is available. By default, it returns an empty list. ((R tignored((s/usr/lib64/python2.7/cmd.pytcompletedefaultscGs:d|}g|jD]}|j|r|d^qS(NR3i(t get_namest startswith(R ttextR:tdotextta((s/usr/lib64/python2.7/cmd.pyt completenamess c Cs%|dkrddl}|j}|j}t|t|}|j|}|j|}|dkr|j|\} } } | dkr|j} qyt|d| } Wqt k r|j} qXn |j } | |||||_ ny|j |SWnt k r dSXdS(sReturn the next possible completion for 'text'. If a command has not been entered, then complete against command list. Otherwise try to call complete_ to get list of completions. iiNRt complete_(Rtget_line_buffertlstripRt get_begidxt get_endidxR2R;R7R8RAtcompletion_matchest IndexErrorR( R R>tstateRtoriglineR&tstrippedtbegidxtendidxR0targstfootcompfunc((s/usr/lib64/python2.7/cmd.pyRs*          cCs t|jS(N(tdirt __class__(R ((s/usr/lib64/python2.7/cmd.pyR<scsEt|j}tfd|jD}t||BS(Nc3s0|]&}|jddr|dVqdS(thelp_iiN(R=(t.0R@(RN(s/usr/lib64/python2.7/cmd.pys $s(tsetRAR<tlist(R RNtcommandsttopics((RNs/usr/lib64/python2.7/cmd.pyt complete_help"s"c Cs|ryt|d|}Wntk ry>t|d|j}|rj|jjdt|dSWntk r~nX|jjdt|j|fdSX|nf|j}g}g}i}x/|D]'}|d dkrd||d Ns list[i] not a string for i in %ss, is%s iiiRis ( RRtrangeRt isinstanceRt TypeErrortjointmaptmaxR]tljust(R RVt displaywidthR.t nonstringstsizetnrowstncolst colwidthsttotwidthtcoltcolwidthtrowtxttexts((s/usr/lib64/python2.7/cmd.pyRm^s\             N(#t__name__t __module__RZtPROMPTRt IDENTCHARSR-RlR6RRR^R`RaRcR[RR R'R!R#RR$R2R"R4R5R;RARR<RYRkR_Rm(((s/usr/lib64/python2.7/cmd.pyR7s<  4           . ((RZtstringt__all__Rt ascii_letterstdigitsRR(((s/usr/lib64/python2.7/cmd.pyt.s   usr/lib64/python2.7/distutils/cmd.pyc000064400000040644152345756560013403 0ustar00 {fc@sdZdZddlZddlZddlZddlmZddlmZm Z m Z m Z m Z ddlm Z dfdYZd efd YZdS( stdistutils.cmd Provides the Command class, the base class for the command classes in the distutils.command package. s$Id$iN(tDistutilsOptionError(tutiltdir_utilt file_utilt archive_utiltdep_util(tlogtCommandcBsyeZdZgZdZdZdZdZdZd#ddZ dZ d d Z d Z d#d Zd#d ZdZd#dZdZdZdZdZd dZddZdZdZdZd#d dZddZd d d#d dZd d dd dZd dZd d d Z d#d#d#d#d!Z!d#d#d d"Z"RS($s}Abstract base class for defining command classes, the "worker bees" of the Distutils. A useful analogy for command classes is to think of them as subroutines with local variables called "options". The options are "declared" in 'initialize_options()' and "defined" (given their final values, aka "finalized") in 'finalize_options()', both of which must be defined by every command class. The distinction between the two is necessary because option values might come from the outside world (command line, config file, ...), and any options dependent on other options must be computed *after* these outside influences have been processed -- hence 'finalize_options()'. The "body" of the subroutine, where it does all its work based on the values of its options, is the 'run()' method, which must also be implemented by every command class. cCsddlm}t||s+tdn|jtkrFtdn||_|jd|_ |j |_ d|_ d|_ d|_dS(sCreate and initialize a new Command object. Most importantly, invokes the 'initialize_options()' method, which is the real initializer and depends on the actual command being instantiated. i(t Distributions$dist must be a Distribution instancesCommand is an abstract classiN(tdistutils.distRt isinstancet TypeErrort __class__Rt RuntimeErrort distributiontinitialize_optionstNonet_dry_runtverbosetforcethelpt finalized(tselftdistR((s%/usr/lib64/python2.7/distutils/cmd.pyt__init__1s       cCsO|dkrBt|d|}|dkr;t|j|S|Sn t|dS(Ntdry_runt_(tgetattrRRtAttributeError(Rtattrtmyval((s%/usr/lib64/python2.7/distutils/cmd.pyt __getattr__as   cCs#|js|jnd|_dS(Ni(Rtfinalize_options(R((s%/usr/lib64/python2.7/distutils/cmd.pytensure_finalizedks  cCstd|jdS(sSet default values for all the options that this command supports. Note that these defaults may be overridden by other commands, by the setup script, by config files, or by the command-line. Thus, this is not the place to code dependencies between options; generally, 'initialize_options()' implementations are just a bunch of "self.foo = None" assignments. This method must be implemented by all command classes. s,abstract method -- subclass %s must overrideN(R R (R((s%/usr/lib64/python2.7/distutils/cmd.pyR}s cCstd|jdS(sSet final values for all the options that this command supports. This is always called as late as possible, ie. after any option assignments from the command-line or from other commands have been done. Thus, this is the place to code option dependencies: if 'foo' depends on 'bar', then it is safe to set 'foo' from 'bar' as long as 'foo' still has the same value it was assigned in 'initialize_options()'. This method must be implemented by all command classes. s,abstract method -- subclass %s must overrideN(R R (R((s%/usr/lib64/python2.7/distutils/cmd.pyR s tcCsddlm}|dkr/d|j}n|j||dtj|d}xy|jD]n\}}}|j|}|ddkr|d }nt ||}|j|d||fdtjq]WdS(Ni(t longopt_xlatescommand options for '%s':tlevels t=s%s = %s( tdistutils.fancy_getoptR#Rtget_command_nametannounceRtINFOt user_optionst translateR(RtheadertindentR#toptionRtvalue((s%/usr/lib64/python2.7/distutils/cmd.pyt dump_optionss   cCstd|jdS(sA command's raison d'etre: carry out the action it exists to perform, controlled by the options initialized in 'initialize_options()', customized by other commands, the setup script, the command-line, and config files, and finalized in 'finalize_options()'. All terminal output and filesystem interaction should be done by 'run()'. This method must be implemented by all command classes. s,abstract method -- subclass %s must overrideN(R R (R((s%/usr/lib64/python2.7/distutils/cmd.pytruns icCstj||dS(smIf the current verbosity level is of greater than or equal to 'level' print 'msg' to stdout. N(R(RtmsgR$((s%/usr/lib64/python2.7/distutils/cmd.pyR(scCs/ddlm}|r+|GHtjjndS(s~Print 'msg' to stdout if the global DEBUG (taken from the DISTUTILS_DEBUG environment variable) flag is true. i(tDEBUGN(tdistutils.debugR3tsyststdouttflush(RR2R3((s%/usr/lib64/python2.7/distutils/cmd.pyt debug_printscCs[t||}|dkr/t||||St|tsWtd|||fn|S(Ns'%s' must be a %s (got `%s`)(RRtsetattrR tstrR(RR.twhattdefaulttval((s%/usr/lib64/python2.7/distutils/cmd.pyt_ensure_stringlikes cCs|j|d|dS(sWEnsure that 'option' is a string; if not defined, set it to 'default'. tstringN(R>(RR.R<((s%/usr/lib64/python2.7/distutils/cmd.pyt ensure_stringscCst||}|dkrdSt|trMt||tjd|ndt|trd}x0|D]}t|tsid}PqiqiWnd}|std||fndS(sEnsure that 'option' is a list of strings. If 'option' is currently a string, we split it either on /,\s*/ or /\s+/, so "foo bar baz", "foo,bar,baz", and "foo, bar baz" all become ["foo", "bar", "baz"]. Ns,\s*|\s+iis''%s' must be a list of strings (got %r)( RRR R:R9tretsplittlistR(RR.R=toktelement((s%/usr/lib64/python2.7/distutils/cmd.pytensure_string_lists    cCsL|j|||}|dk rH|| rHtd|||fndS(Nserror in '%s' option: (R>RR(RR.ttesterR;t error_fmtR<R=((s%/usr/lib64/python2.7/distutils/cmd.pyt_ensure_tested_stringscCs |j|tjjdddS(s5Ensure that 'option' is the name of an existing file.tfilenames$'%s' does not exist or is not a fileN(RItostpathtisfile(RR.((s%/usr/lib64/python2.7/distutils/cmd.pytensure_filenamescCs |j|tjjdddS(Nsdirectory names)'%s' does not exist or is not a directory(RIRKRLtisdir(RR.((s%/usr/lib64/python2.7/distutils/cmd.pytensure_dirname scCs$t|dr|jS|jjSdS(Nt command_name(thasattrRQR t__name__(R((s%/usr/lib64/python2.7/distutils/cmd.pyR'scGsh|jj|}|jxE|D]=\}}t||dkr#t||t||q#q#WdS(s>Set the values of any "undefined" options from corresponding option values in some other command object. "Undefined" here means "is None", which is the convention used to indicate that an option has not been changed between 'initialize_options()' and 'finalize_options()'. Usually called from 'finalize_options()' for options that depend on some other command rather than another option of the same command. 'src_cmd' is the other command from which option values will be taken (a command object will be created for it if necessary); the remaining arguments are '(src_option,dst_option)' tuples which mean "take the value of 'src_option' in the 'src_cmd' command object, and copy it to 'dst_option' in the current command object". N(Rtget_command_objR!RRR9(Rtsrc_cmdt option_pairst src_cmd_objt src_optiont dst_option((s%/usr/lib64/python2.7/distutils/cmd.pytset_undefined_optionss   cCs#|jj||}|j|S(sWrapper around Distribution's 'get_command_obj()' method: find (create if necessary and 'create' is true) the command object for 'command', call its 'ensure_finalized()' method, and return the finalized command object. (RRTR!(Rtcommandtcreatetcmd_obj((s%/usr/lib64/python2.7/distutils/cmd.pytget_finalized_command1s icCs|jj||S(N(Rtreinitialize_command(RR[treinit_subcommands((s%/usr/lib64/python2.7/distutils/cmd.pyR_=s cCs|jj|dS(sRun some other command: uses the 'run_command()' method of Distribution, which creates and finalizes the command object if necessary and then invokes its 'run()' method. N(Rt run_command(RR[((s%/usr/lib64/python2.7/distutils/cmd.pyRaAscCsLg}x?|jD]4\}}|dks4||r|j|qqW|S(skDetermine the sub-commands that are relevant in the current distribution (ie., that need to be run). This is based on the 'sub_commands' class attribute: each tuple in that list may include a method that we call to determine if the subcommand needs to be run for the current distribution. Return a list of command names. N(t sub_commandsRtappend(Rtcommandstcmd_nametmethod((s%/usr/lib64/python2.7/distutils/cmd.pytget_sub_commandsHs cCs!tjd|j|fdS(Nswarning: %s: %s (RtwarnR'(RR2((s%/usr/lib64/python2.7/distutils/cmd.pyRhXs cCs tj|||d|jdS(NR(RtexecuteR(RtfunctargsR2R$((s%/usr/lib64/python2.7/distutils/cmd.pyRi\sicCstj||d|jdS(NR(RtmkpathR(Rtnametmode((s%/usr/lib64/python2.7/distutils/cmd.pyRl_sc Cs)tj|||||j |d|jS(sCopy a file respecting verbose, dry-run and force flags. (The former two default to whatever is in the Distribution object, and the latter defaults to false for commands that don't define it.)R(Rt copy_fileRR(Rtinfiletoutfilet preserve_modetpreserve_timestlinkR$((s%/usr/lib64/python2.7/distutils/cmd.pyRobs c Cs)tj||||||j d|jS(s\Copy an entire directory tree respecting verbose, dry-run, and force flags. R(Rt copy_treeRR(RRpRqRrRstpreserve_symlinksR$((s%/usr/lib64/python2.7/distutils/cmd.pyRuos   cCstj||d|jS(s$Move a file respecting dry-run flag.R(Rt move_fileR(RtsrctdstR$((s%/usr/lib64/python2.7/distutils/cmd.pyRw{scCs*ddlm}|||d|jdS(s2Spawn an external command respecting dry-run flag.i(tspawnRN(tdistutils.spawnRzR(Rtcmdt search_pathR$Rz((s%/usr/lib64/python2.7/distutils/cmd.pyRzsc Cs+tj||||d|jd|d|S(NRtownertgroup(Rt make_archiveR(Rt base_nametformattroot_dirtbase_dirR~R((s%/usr/lib64/python2.7/distutils/cmd.pyRscCs|dkrd|}nt|tr4|f}n!t|ttfsUtdn|dkr}d|dj|f}n|jstj ||r|j ||||n t j |dS(sSpecial case of 'execute()' for operations that process one or more input files and generate one output file. Works just like 'execute()', except the operation is skipped and a different message printed if 'outfile' already exists and is newer than all files listed in 'infiles'. If the command defined 'self.force', and it is true, then the command is unconditionally run -- does no timestamp checks. sskipping %s (inputs unchanged)s9'infiles' must be a string, or a list or tuple of stringssgenerating %s from %ss, N( RR R:RCttupleR tjoinRRt newer_groupRiRtdebug(RtinfilesRqRjRktexec_msgtskip_msgR$((s%/usr/lib64/python2.7/distutils/cmd.pyt make_files     N(#RSt __module__t__doc__RbRRR!RR RR0R1R(R8R>R@RFRIRNRPR'RZR^R_RaRgRhRiRlRoRuRwRzRR(((s%/usr/lib64/python2.7/distutils/cmd.pyRsD 0                  t install_misccBs;eZdZdgZdZdZdZdZRS( s{Common base class for installing some files in a subdirectory. Currently used by install_data and install_scripts. s install-dir=tds!directory to install the files tocCsd|_g|_dS(N(Rt install_dirtoutfiles(R((s%/usr/lib64/python2.7/distutils/cmd.pyRs cCs|jd|dfdS(NtinstallR(RZ(Rtdirname((s%/usr/lib64/python2.7/distutils/cmd.pyt_install_dir_fromscCsmg|_|sdS|j|jxC|D];}|j||j|jjtjj|j|q*WdS(N(RRlRRoRcRKRLR(Rtfilelisttf((s%/usr/lib64/python2.7/distutils/cmd.pyt _copy_filess  cCs|jS(N(R(R((s%/usr/lib64/python2.7/distutils/cmd.pyt get_outputss(s install-dir=Rs!directory to install the files to(RSRRR*RRRR(((s%/usr/lib64/python2.7/distutils/cmd.pyRs     (Rt __revision__R5RKRAtdistutils.errorsRt distutilsRRRRRRRR(((s%/usr/lib64/python2.7/distutils/cmd.pyts$(usr/lib64/python2.7/cmd.pyc000064400000033327152346135570011350 0ustar00 zfc@sLdZddlZdgZdZejejdZdddYZdS(s 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. These interpreters use raw_input; thus, if the readline module is loaded, they automatically support Emacs-like command history and editing features. iNtCmds(Cmd) t_cBseZdZeZeZdZdZdZ dZ dZ dZ dZdZdZdddd Zdd Zd Zd Zd ZdZdZdZdZdZdZdZdZdZdZdZ dZ!ddZ"RS(sA 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. t=ts(Documented commands (type help ):sMiscellaneous help topics:sUndocumented commands:s*** No help on %sittabcCsjddl}|dk r$||_n |j|_|dk rH||_n |j|_g|_||_dS(sInstantiate 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. iN(tsystNonetstdintstdouttcmdqueuet completekey(tselfR RRR((s/usr/lib64/python2.7/cmd.pyt__init__Os        cCs|j|jrv|jrvyCddl}|j|_|j|j|j|jdWqvt k rrqvXnz<|dk r||_ n|j r|j j t|j dnd}x|s|jr|jjd}n|jr yt|j}Wqstk rd}qsXnS|j j |j|j j|jj}t|sdd}n|jd}|j|}|j|}|j||}qW|jWd|jr|jry ddl}|j|jWqt k rqXnXdS(sRepeatedly 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. iNs : completes itEOFs (tpreloopt use_rawinputR treadlinet get_completert old_completert set_completertcompletetparse_and_bindt ImportErrorRtintroRtwritetstrR tpopt raw_inputtprompttEOFErrortflushRtlentrstriptprecmdtonecmdtpostcmdtpostloop(R RRtstoptline((s/usr/lib64/python2.7/cmd.pytcmdloopfsN                 cCs|S(sHook method executed just before the command line is interpreted, but after the input prompt is generated and issued. ((R R&((s/usr/lib64/python2.7/cmd.pyR!scCs|S(s?Hook method executed just after a command dispatch is finished.((R R%R&((s/usr/lib64/python2.7/cmd.pyR#scCsdS(s>Hook method executed once when the cmdloop() method is called.N((R ((s/usr/lib64/python2.7/cmd.pyRscCsdS(sYHook method executed once when the cmdloop() method is about to return. N((R ((s/usr/lib64/python2.7/cmd.pyR$scCs|j}|sdd|fS|ddkr@d|d}n@|ddkrt|drpd|d}qdd|fSndt|}}x-||kr|||jkr|d}qW|| ||j}}|||fS( sParse 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. it?shelp it!tdo_shellsshell N(tstripRthasattrRt identchars(R R&titntcmdtarg((s/usr/lib64/python2.7/cmd.pyt parselines  "cCs|j|\}}}|s(|jS|dkrA|j|S||_|dkrbd|_n|dkr{|j|Syt|d|}Wntk r|j|SX||SdS(shInterpret 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. R Rtdo_N(R2t emptylineRtdefaulttlastcmdtgetattrtAttributeError(R R&R0R1tfunc((s/usr/lib64/python2.7/cmd.pyR"s          cCs|jr|j|jSdS(sCalled 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(R6R"(R ((s/usr/lib64/python2.7/cmd.pyR4s cCs|jjd|dS(sCalled on an input line when the command prefix is not recognized. If this method is not overridden, it prints an error message and returns. s*** Unknown syntax: %s N(RR(R R&((s/usr/lib64/python2.7/cmd.pyR5scGsgS(sMethod called to complete an input line when no command-specific complete_*() method is available. By default, it returns an empty list. ((R tignored((s/usr/lib64/python2.7/cmd.pytcompletedefaultscGs:d|}g|jD]}|j|r|d^qS(NR3i(t get_namest startswith(R ttextR:tdotextta((s/usr/lib64/python2.7/cmd.pyt completenamess c Cs%|dkrddl}|j}|j}t|t|}|j|}|j|}|dkr|j|\} } } | dkr|j} qyt|d| } Wqt k r|j} qXn |j } | |||||_ ny|j |SWnt k r dSXdS(sReturn the next possible completion for 'text'. If a command has not been entered, then complete against command list. Otherwise try to call complete_ to get list of completions. iiNRt complete_(Rtget_line_buffertlstripRt get_begidxt get_endidxR2R;R7R8RAtcompletion_matchest IndexErrorR( R R>tstateRtoriglineR&tstrippedtbegidxtendidxR0targstfootcompfunc((s/usr/lib64/python2.7/cmd.pyRs*          cCs t|jS(N(tdirt __class__(R ((s/usr/lib64/python2.7/cmd.pyR<scsEt|j}tfd|jD}t||BS(Nc3s0|]&}|jddr|dVqdS(thelp_iiN(R=(t.0R@(RN(s/usr/lib64/python2.7/cmd.pys $s(tsetRAR<tlist(R RNtcommandsttopics((RNs/usr/lib64/python2.7/cmd.pyt complete_help"s"c Cs|ryt|d|}Wntk ry>t|d|j}|rj|jjdt|dSWntk r~nX|jjdt|j|fdSX|nf|j}g}g}i}x/|D]'}|d dkrd||d Ns list[i] not a string for i in %ss, is%s iiiRis ( RRtrangeRt isinstanceRt TypeErrortjointmaptmaxR]tljust(R RVt displaywidthR.t nonstringstsizetnrowstncolst colwidthsttotwidthtcoltcolwidthtrowtxttexts((s/usr/lib64/python2.7/cmd.pyRm^s\             N(#t__name__t __module__RZtPROMPTRt IDENTCHARSR-RlR6RRR^R`RaRcR[RR R'R!R#RR$R2R"R4R5R;RARR<RYRkR_Rm(((s/usr/lib64/python2.7/cmd.pyR7s<  4           . ((RZtstringt__all__Rt ascii_letterstdigitsRR(((s/usr/lib64/python2.7/cmd.pyt.s