PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB`  pY@sdZddlZddlmZddlmZdddddd iZdd d ZddddddddZddddZ ddZ dS)zFdistutils.file_util Utility functions for operating on single files. N)DistutilsFileError)logZcopyinghardz hard linkingsymzsymbolically linkingicNCsd}d}zyt|d}Wn>tk rb}ztd||jfWYdd}~XnXtjj|rytj|Wn>tk r}ztd||jfWYdd}~XnXyt|d}Wn>tk r}ztd||jfWYdd}~XnXxy|j|}Wn>tk rq}ztd||jfWYdd}~XnX|syPy|j |Wqtk r}ztd||jfWYdd}~XqXqWWd|r|j |r|j XdS) a5Copy the file 'src' to 'dst'; both must be filenames. Any error opening either file, reading from 'src', or writing to 'dst', raises DistutilsFileError. Data is read/written in chunks of 'buffer_size' bytes (default 16k). No attempt is made to handle anything apart from regular files. Nrbzcould not open '%s': %szcould not delete '%s': %swbzcould not create '%s': %szcould not read from '%s': %szcould not write to '%s': %s) openOSErrorrstrerrorospathexistsunlinkreadwriteclose)srcdstZ buffer_sizefsrcfdstebufr(/opt/python35/lib/python3.5/file_util.py_copy_file_contentssF ,)))1 rcCsddlm}ddlm} m} m} m} tjj |sTt d|tjj |r|} tjj |tjj |}ntjj|} |r||| r|dkrtjd||dfSyt|}Wn"tk rtd|YnX|dkrptjj |tjj |krZtjd||| ntjd||||r|dfS|d krtjj|otjj||s6ytj|||dfSWq6tk rYq6XnM|d kr6tjj|otjj||s6tj|||dfSt|||sO|rtj|}|rtj||| || f|rtj|| || |dfS) aCopy a file 'src' to 'dst'. If 'dst' is a directory, then 'src' is copied there with the same name; otherwise, it must be a filename. (If the file exists, it will be ruthlessly clobbered.) If 'preserve_mode' is true (the default), the file's mode (type and permission bits, or whatever is analogous on the current platform) is copied. If 'preserve_times' is true (the default), the last-modified and last-access times are copied as well. If 'update' is true, 'src' will only be copied if 'dst' does not exist, or if 'dst' does exist but is older than 'src'. 'link' allows you to make hard links (os.link) or symbolic links (os.symlink) instead of copying: set it to "hard" or "sym"; if it is None (the default), files are copied. Don't set 'link' on systems that don't support it: 'copy_file()' doesn't check if hard or symbolic linking is available. If hardlink fails, falls back to _copy_file_contents(). Under Mac OS, uses the native file copy function in macostools; on other systems, uses '_copy_file_contents()' to copy file contents. Return a tuple (dest_name, copied): 'dest_name' is the actual name of the output file, and 'copied' is true if the file was copied (or would have been copied, if 'dry_run' true). r)newer)ST_ATIMEST_MTIMEST_MODES_IMODEz4can't copy '%s': doesn't exist or not a regular filerz"not copying %s (output up-to-date)z&invalid value '%s' for 'link' argumentz %s %s -> %srr)Zdistutils.dep_utilrstatrrr r!r r isfilerisdirjoinbasenamedirnamerdebug _copy_actionKeyError ValueErrorinforsamefilelinkr symlinkrutimechmod)rrZ preserve_modeZpreserve_timesupdater.verbosedry_runrrrr r!diractionstrrr copy_fileCsT!" $    $  '  '   r8c(Csddlm}m}m}m}m}ddl} |dkrStjd|||r]|S||syt d|||rt j j |||}n"||rt d||f|||st d||fd } yt j ||Wnetk rn} zE| j\} } | | jkrCd } nt d ||| fWYdd} ~ XnX| rt||d |yt j|Wnvtk r} zV| j\} } yt j|Wntk rYnXt d |||| fWYdd} ~ XnX|S)a%Move a file 'src' to 'dst'. If 'dst' is a directory, the file will be moved into it with the same name; otherwise, 'src' is just renamed to 'dst'. Return the new full name of the file. Handles cross-device moves on Unix using 'copy_file()'. What about other systems??? r)rr#r$r&r'Nrzmoving %s -> %sz#can't move '%s': not a regular filez0can't move '%s': destination '%s' already existsz2can't move '%s': destination '%s' not a valid pathFTzcouldn't move '%s' to '%s': %sr3zAcouldn't move '%s' to '%s' by copy/delete: delete '%s' failed: %s)Zos.pathrr#r$r&r'errnorr,rr r r%renamer argsZEXDEVr8r)rrr3r4rr#r$r&r'r9Zcopy_itrnummsgrrr move_filesR (      ) )r>c CsGt|d}z&x|D]}|j|dqWWd|jXdS)z{Create a file with the specified name and write 'contents' (a sequence of strings without line terminators) to it. w N)r rr)filenamecontentsflinerrr write_files  rEi@) __doc__r Zdistutils.errorsrZ distutilsrr)rr8r>rErrrrs  3 c=