!9QRc@s dZddlZddlZy5ddlZeZ[ddlmZee_[Wnek rrddlZnXddlmZddgZdZ dZ d e fd YZ d e fd YZ d e fdYZde fdYZde fdYZe eefZdZdfdYZyddlZWnek rTn9XdefdYZejde eeejfZeadZeadZdZdZ dZ!dddZ"dfdYZ#d Z$e%d!kre$ndS("sSAn FTP client class and some helper functions. Based on RFC 959: File Transfer Protocol (FTP), by J. Postel and J. Reynolds Example: >>> from ftplib import FTP >>> ftp = FTP('ftp.python.org') # connect to host, default port >>> ftp.login() # default, i.e.: user anonymous, passwd anonymous@ '230 Guest login ok, access restrictions apply.' >>> ftp.retrlines('LIST') # list directory contents total 9 drwxr-xr-x 8 root wheel 1024 Jan 3 1994 . drwxr-xr-x 8 root wheel 1024 Jan 3 1994 .. drwxr-xr-x 2 root wheel 1024 Jan 3 1994 bin drwxr-xr-x 2 root wheel 1024 Jan 3 1994 etc d-wxrwxr-x 2 ftp wheel 1024 Sep 5 13:43 incoming drwxr-xr-x 2 root wheel 1024 Nov 17 1993 lib drwxr-xr-x 6 1094 wheel 1024 Sep 13 19:07 pub drwxr-xr-x 3 root wheel 1024 Jan 3 1994 usr -rw-r--r-- 1 root root 312 Aug 1 1994 welcome.msg '226 Transfer complete.' >>> ftp.quit() '221 Goodbye.' >>> A nice test that reveals some of the network dialogue would be: python ftplib.py -d localhost -l -p -l iN(tgetfqdn(t_GLOBAL_DEFAULT_TIMEOUTtFTPtNetrciitErrorcBseZRS((t__name__t __module__(((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR=st error_replycBseZRS((RR(((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR>st error_tempcBseZRS((RR(((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR?st error_permcBseZRS((RR(((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR @st error_protocBseZRS((RR(((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR Ass cBseZdZdZdZeZd,Zd,Z d,Z dZ dddde dZ ddddZdZdZeZd Zd Zd Zd Zd ZdZdZdZdZdZdZdZdZdZdZ d,dZ!d,dZ"ddddZ#dd,dZ$d,dZ%dd,d,dZ&d,dZ'd Z(d!Z)d"Z*d#Z+d$Z,d%Z-d&Z.d'Z/d(Z0d)Z1d*Z2d+Z3RS(-suAn FTP client class. To create a connection, call the class using these arguments: host, user, passwd, acct, timeout The first four arguments are all strings, and have default value ''. timeout must be numeric and defaults to None if not passed, meaning that no timeout will be set on any ftp socket(s) If a timeout is passed, then this is now the default timeout for all ftp socket operations for this instance. Then use self.connect() with optional host and port argument. To download a file, use ftp.retrlines('RETR ' + filename), or ftp.retrbinary() with slightly different arguments. To upload a file, use ftp.storlines() or ftp.storbinary(), which have an open file as argument (see their definitions below for details). The download/upload functions first issue appropriate TYPE and PORT or PASV commands. iticCs?||_|r;|j||r;|j|||q;ndS(N(ttimeouttconnecttlogin(tselfthosttusertpasswdtacctR ((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyt__init__qs   icCs|dkr||_n|dkr0||_n|dkrH||_ntj|j|jf|j|_|jj|_|jjd|_ |j |_ |j S(sConnect to host. Arguments are: - host: hostname to connect to (string, default previous host) - port: port to connect to (integer, default previous port) R iitrb( RtportR tsockettcreate_connectiontsocktfamilytaftmakefiletfiletgetresptwelcome(RRRR ((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR ys      $cCs(|jr!dG|j|jGHn|jS(s`Get the welcome message from the server. (this is read and squirreled away by connect())s *welcome*(t debuggingtsanitizeR(R((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyt getwelcomes cCs ||_dS(sSet the debugging level. The required argument level means: 0: no debugging output (default) 1: print commands and responses but not body text etc. 2: also print raw lines read and sent before stripping CR/LFN(R (Rtlevel((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytset_debuglevelscCs ||_dS(sUse passive or active mode for data transfers. With a false argument, use the normal PORT mode, With a true argument, use the PASV command.N(t passiveserver(Rtval((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytset_pasvscCs|d dks |d dkr~t|}x.|dkr\||ddkr\|d}q/W|d d|d||}nt|S(Nispass sPASS is t*(tlentrepr(Rtsti((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR!s   #!cCsB|t}|jdkr.dG|j|GHn|jj|dS(Nis*put*(tCRLFR R!Rtsendall(Rtline((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytputlines cCs/|jrdG|j|GHn|j|dS(Ns*cmd*(R R!R0(RR/((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytputcmds cCs|jj}|jdkr3dG|j|GHn|sBtn|dtkr_|d }n|dtkr||d }n|S(Nis*get*ii(RtreadlineR R!tEOFErrorR-(RR/((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytgetlines   cCsw|j}|dd!dkrs|d }xG|j}|d|}|d |kr,|dd!dkr,Pq,q,n|S(Niit-s (R4(RR/tcodetnextline((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyt getmultilines    cCs|j}|jr*dG|j|GHn|d |_|d }|d krQ|S|dkrit|n|dkrt|nt|dS( Ns*resp*iit1t2t3t4t5(R9R:R;(R8R R!tlastrespRR R (Rtresptc((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRs         cCs,|j}|d dkr(t|n|S(s%Expect a response beginning with '2'.iR:(RR(RR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytvoidresps  cCsmdt}|jdkr.dG|j|GHn|jj|t|j}|d d krit|ndS( sAbort a file transfer. Uses out-of-band data. This does not follow the procedure from the RFC to send Telnet IP and Synch; that doesn't seem to work with the servers I've tried. Instead, just send the ABOR command as OOB data.tABORis *put urgent*it426t225t226N(RCRDRE(R-R R!RR.tMSG_OOBR8R (RR/R?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytaborts  cCs|j||jS(s'Send a command and return the response.(R1R(Rtcmd((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytsendcmds cCs|j||jS(s8Send a command and expect a response beginning with '2'.(R1RA(RRH((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytvoidcmds cCsY|jd}t|dt|dg}||}ddj|}|j|S(sUSend a PORT command with the current host and the given port number. t.isPORT t,(tsplitR*tjoinRJ(RRRthbytestpbytestbytesRH((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytsendports   cCsd}|jtjkr!d}n|jtjkr<d}n|dkrTtdndt||t|dg}ddj|}|j|S(sDSend a EPRT command with the current host and the given port number.iiisunsupported address familyR sEPRT t|(RRtAF_INETtAF_INET6R R*RNRJ(RRRRtfieldsRH((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytsendeprts    !c CsSd}d}xtjdd|jtjdtjD]w}|\}}}}}y&tj|||}|j|Wn2tjk r}|r|jnd}q4nXPq4W|stj|n|j d|j d} |j j d} |jtj kr|j | | } n|j| | } |jtk rO|j|jn|S(s3Create a new socket and send a PORT command for it.s!getaddrinfo returns an empty listiiN(tNoneRt getaddrinfoRt SOCK_STREAMt AI_PASSIVEtbindterrortclosetlistent getsocknameRRTRRRWR Rt settimeout( RtmsgRtresRtsocktypetprotot canonnametsaRRR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytmakeports0.  cCsa|jtjkr0t|jd\}}n't|jd|jj\}}||fS(NtPASVtEPSV(RRRTtparse227RItparse229Rt getpeername(RRR((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytmakepasv.s'c Csd}|jr|j\}}tj||f|j}yn|dk r_|jd|n|j|}|ddkr|j}n|ddkrt|nWq|j qXn|j }z|dk r|jd|n|j|}|ddkr!|j}n|ddkr=t|n|j \}} |jt k rq|j |jnWd|j X|d dkrt|}n||fS(sInitiate a transfer over the data connection. If the transfer is active, send a port command and the transfer command, and accept the connection. If the server is passive, send a pasv command, connect to it, and start the transfer command. Either way, return the socket for the connection and the expected size of the transfer. The expected size may be None if it could not be determined. Optional `rest' argument can be a string that is sent as the argument to a REST command. This is essentially a server marker used to tell the server to skip over any data up to the given marker. sREST %siR:R9Nit150(RXR%RnRRR RIRRR^RhtacceptRRatparse150( RRHtresttsizeRRtconnR?Rtsockaddr((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyt ntransfercmd5s>        cCs|j||dS(s0Like ntransfercmd() but returns only the socket.i(Rv(RRHRr((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyt transfercmdnscCs|sd}n|sd}n|s-d}n|dkrR|d krR|d}n|jd|}|ddkr|jd|}n|ddkr|jd |}n|dd krt|n|S( sLogin, default anonymous.t anonymousR R5s anonymous@sUSER iR;sPASS sACCT R:(R R5(RIR(RRRRR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRrs      i cCs\|jd|j||}x&|j|}|s;Pn||q"|j|jS(sRetrieve data in binary mode. A new port is created for you. Args: cmd: A RETR command. callback: A single parameter callable to be called on each block of data read. blocksize: The maximum number of bytes to read from the socket at one time. [default: 8192] rest: Passed to transfercmd(). [default: None] Returns: The response code. sTYPE I(RJRwtrecvR^RA(RRHtcallbackt blocksizeRrRttdata((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyt retrbinarys   cCs|dkrt}n|jd}|j|}|jd}x~|j}|jdkrrdGt|GHn|s|Pn|dtkr|d }n|ddkr|d }n||qE|j |j |j S( snRetrieve data in line mode. A new port is created for you. Args: cmd: A RETR, LIST, NLST, or MLSD command. callback: An optional single parameter callable that is called for each line with the trailing CRLF stripped. [default: print_line()] Returns: The response code. sTYPE ARis*retr*iis N( RXt print_lineRIRwRR2R R*R-R^RA(RRHRzR?RttfpR/((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyt retrliness&       cCsr|jd|j||}x<|j|}|s;Pn|j||r"||q"q"|j|jS(s<Store a file in binary mode. A new port is created for you. Args: cmd: A STOR command. fp: A file-like object with a read(num_bytes) method. blocksize: The maximum data size to read from fp and send over the connection at once. [default: 8192] callback: An optional single parameter callable that is called on on each block of data after it is sent. [default: None] rest: Passed to transfercmd(). [default: None] Returns: The response code. sTYPE I(RJRwtreadR.R^RA(RRHRR{RzRrRttbuf((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyt storbinarys   cCs|jd|j|}xs|j}|s5Pn|dtkro|dtkrb|d }n|t}n|j||r||qq|j|jS(skStore a file in line mode. A new port is created for you. Args: cmd: A STOR command. fp: A file-like object with a readline() method. callback: An optional single parameter callable that is called on on each line after it is sent. [default: None] Returns: The response code. sTYPE Aii(RJRwR2R-R.R^RA(RRHRRzRtR((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyt storliness      cCsd|}|j|S(sSend new account name.sACCT (RJ(RtpasswordRH((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRs cGsBd}x|D]}|d|}q Wg}|j||j|S(sBReturn a list of files in a given directory (default the current).tNLSTt (Rtappend(RtargsRHtargtfiles((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytnlsts  cGsd}d}|drJt|dtdkrJ|d |d}}nx%|D]}|rQ|d|}qQqQW|j||dS(sList a directory in long form. By default list current directory to stdout. Optional last argument is callback function; all non-empty arguments before it are concatenated to the LIST command. (This *should* only be used for a pathname.)tLISTiR RN(RXttypeR(RRRHtfuncR((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytdirs& cCs@|jd|}|ddkr/t|n|jd|S(sRename a file.sRNFR iR;sRNTO (RIRRJ(RtfromnamettonameR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytrename s cCs4|jd|}|d dkr'|St|dS(sDelete a file.sDELE it250t200N(RR(RIR(RtfilenameR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytdeletescCs|dkrSy|jdSWqhtk rO}|jdd dkrPqPqhXn|dkrhd}nd|}|j|S( sChange to a directory.s..tCDUPiit500R RKsCWD (RJR R(RtdirnameRbRH((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytcwds     cCsi|jd|}|d dkre|dj}yt|SWqettfk rat|SXndS(sRetrieve the size of a file.sSIZE it213N(RItstriptintt OverflowErrort ValueErrortlong(RRR?R+((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRs(scCs|jd|}t|S(s+Make a directory, return its full pathname.sMKD (RItparse257(RRR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytmkd3scCs|jd|S(sRemove a directory.sRMD (RJ(RR((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytrmd8scCs|jd}t|S(s!Return current working directory.tPWD(RIR(RR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytpwd<scCs|jd}|j|S(sQuit, and close the connection.tQUIT(RJR^(RR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytquitAs cCsR|jdk r|jjn|jdk r>|jjnd|_|_dS(s8Close the connection without assuming anything about it.N(RRXR^R(R((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR^Gs N(4RRt__doc__R RtFTP_PORTRRXRRRR%RRR R"R$tdebugR'R!R0R1R4R8RRARGRIRJRRRWRhRnRvRwRR}RRRRRRRRRRsRRRRR^(((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRMs`              9           tFTP_TLScBseZdZejZddddd d edZddde dZ dZ dZ dZ d dZdd d Zd d Zdd d d Zd d ZRS(sA FTP subclass which adds TLS support to FTP as described in RFC-4217. Connect as usual to port 21 implicitly securing the FTP control connection before authenticating. Securing the data connection requires user to explicitly ask for it by calling prot_p() method. Usage example: >>> from ftplib import FTP_TLS >>> ftps = FTP_TLS('ftp.python.org') >>> ftps.login() # login anonymously previously securing control channel '230 Guest login ok, access restrictions apply.' >>> ftps.prot_p() # switch to secure data connection '200 Protection level set to P' >>> ftps.retrlines('LIST') # list directory content securely total 9 drwxr-xr-x 8 root wheel 1024 Jan 3 1994 . drwxr-xr-x 8 root wheel 1024 Jan 3 1994 .. drwxr-xr-x 2 root wheel 1024 Jan 3 1994 bin drwxr-xr-x 2 root wheel 1024 Jan 3 1994 etc d-wxrwxr-x 2 ftp wheel 1024 Sep 5 13:43 incoming drwxr-xr-x 2 root wheel 1024 Nov 17 1993 lib drwxr-xr-x 6 1094 wheel 1024 Sep 13 19:07 pub drwxr-xr-x 3 root wheel 1024 Jan 3 1994 usr -rw-r--r-- 1 root root 312 Aug 1 1994 welcome.msg '226 Transfer complete.' >>> ftps.quit() '221 Goodbye.' >>> R cCs;||_||_t|_tj||||||dS(N(tkeyfiletcertfiletFalset_prot_pRR(RRRRRRRR ((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRws   cCs?|r)t|jtj r)|jntj||||S(N(t isinstanceRtsslt SSLSockettauthRR(RRRRtsecure((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR~s cCst|jtjr$tdn|jtjkrH|jd}n|jd}tj|j|j |j d|j|_|jj dd|_ |S(s2Set up secure control connection by using TLS/SSL.sAlready using TLSsAUTH TLSsAUTH SSLt ssl_versiontmodeR( RRRRRRtPROTOCOL_TLSv1RJt wrap_socketRRRR(RR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRscCs)|jd|jd}t|_|S(sSet up secure data connection.sPBSZ 0sPROT P(RJtTrueR(RR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytprot_ps  cCs|jd}t|_|S(s"Set up clear text data connection.sPROT C(RJRR(RR?((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytprot_cs cCsUtj|||\}}|jrKtj||j|jd|j}n||fS(NR(RRvRRRRRR(RRHRrRtRs((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRvs  i cCs|jd|j||}zLx&|j|}|s>Pn||q%t|tjrj|jnWd|jX|jS(NsTYPE I( RJRwRyRRRtunwrapR^RA(RRHRzR{RrRtR|((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR}s   cCs|dkrt}n|jd}|j|}|jd}zx~|j}|jdkrudGt|GHn|sPn|dtkr|d }n|ddkr|d }n||qHt |t j r|j nWd|j |j X|jS(NsTYPE ARis*retr*iis (RXR~RIRwRR2R R*R-RRRRR^RA(RRHRzR?RtRR/((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRs,       cCs|jd|j||}zbx<|j|}|s>Pn|j||r%||q%q%t|tjr|jnWd|jX|j S(NsTYPE I( RJRwRR.RRRRR^RA(RRHRR{RzRrRtR((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRs   cCs|jd|j|}zxs|j}|s8Pn|dtkrr|dtkre|d }n|t}n|j||r"||q"q"t|tjr|jnWd|j X|j S(NsTYPE Aii( RJRwR2R-R.RRRRR^RA(RRHRRzRtR((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRs$      N(RRRRRRRXRRRRRRRRvR}RRR(((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRTs      cCs|d dkrt|ntdkrLddl}|jd|jantj|}|sedS|jd}yt|SWnt t fk rt |SXdS(sParse the '150' response for a RETR request. Returns the expected transfer size or None; size is not guaranteed to be present in the 150 message. iRoiNs150 .* \((\d+) bytes\)i( Rt_150_reRXtretcompilet IGNORECASEtmatchtgroupRRRR(R?RtmR+((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRqs   cCs|d dkrt|ntdkrFddl}|jdantj|}|sgt|n|j}dj|d }t |dd>t |d }||fS( sParse the '227' response for a PASV request. Raises error_proto if it does not contain '(h1,h2,h3,h4,p1,p2)' Return ('host.addr.as.numbers', port#) tuple.it227iNs#(\d+),(\d+),(\d+),(\d+),(\d+),(\d+)RKiii( Rt_227_reRXRRtsearchR tgroupsRNR(R?RRtnumbersRR((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRks     "cCs|d dkrt|n|jd}|dkrCt|n|jd|d}|dkrqt|n||d||dkrt|n||d|!j||d}t|dkrt|n|d}t|d}||fS(sParse the '229' response for a EPSV request. Raises error_proto if it does not contain '(|||port|)' Return ('host.addr.as.numbers', port#) tuple.it229t(it)ii(RtfindR RMR)R(R?tpeertlefttrighttpartsRR((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRl+s      "  cCs|d dkrt|n|dd!dkr3dSd}d}t|}xg||kr||}|d}|dkr||ks||dkrPn|d}n||}qNW|S(sParse the '257' response for a MKD or PWD request. This is a response to a MKD or PWD request: a directory name. Returns the directoryname in the 257 reply.it257is "R it"(RR)(R?RR,tnR@((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyRAs       cCs |GHdS(s+Default retrlines callback to print a line.N((R/((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pyR~XsR tIc Cs|s|}nd|}|j||j|t|jd\}}|j|||jd|}|d d krtn|jd|}|d d krtn|j|jdS( s+Copy file from one FTP-instance to another.sTYPE RisSTOR it125RosRETR N(Rs150(Rs150(RJRkRIRRR RA( tsourcet sourcenamettargett targetnameRt sourcehostt sourceportttreplytsreply((sG/opt/poky/1.5/sysroots/x86_64-pokysdk-linux/usr/lib/python2.7/ftplib.pytftpcp]s       cBsPeZdZdZdZdZddZdZdZ dZ dZ RS(sClass to parse & provide access to 'netrc' format files. See the netrc(4) man page for information on the file format. WARNING: This class is obsolete -- use module netrc instead. c Cs|dkrFdtjkr:tjjtjdd}qFtdni|_i|_t|d}d}xe|j }|sPn|r|j r|j |qpn"|rt ||j|sX             k 7