/usr/lib64/python2.7/distutils
NameSizeModeActions
command/-0755rm
archive_util.py82190644editdlrm
archive_util.pyc76010644editdlrm
archive_util.pyo76010644editdlrm
bcppcompiler.py149410644editdlrm
bcppcompiler.pyc78820644editdlrm
bcppcompiler.pyo78820644editdlrm
ccompiler.py467260644editdlrm
ccompiler.pyc368820644editdlrm
ccompiler.pyo367410644editdlrm
cmd.py192700644editdlrm
cmd.pyc168040644editdlrm
cmd.pyo168040644editdlrm
config.py41340644editdlrm
config.pyc35650644editdlrm
config.pyo35650644editdlrm
core.py90190644editdlrm
core.pyc75360644editdlrm
core.pyo75360644editdlrm
cygwinccompiler.py177350644editdlrm
cygwinccompiler.pyc98250644editdlrm
cygwinccompiler.pyo98250644editdlrm
debug.py1620644editdlrm
debug.pyc2540644editdlrm
debug.pyo2540644editdlrm
dep_util.py35090644editdlrm
dep_util.pyc31800644editdlrm
dep_util.pyo31800644editdlrm
dir_util.py78680644editdlrm
dir_util.pyc67860644editdlrm
dir_util.pyo67860644editdlrm
dist.py500490644editdlrm
dist.pyc391760644editdlrm
dist.pyo391760644editdlrm
emxccompiler.py119310644editdlrm
emxccompiler.pyc74670644editdlrm
emxccompiler.pyo74670644editdlrm
errors.py34940644editdlrm
errors.pyc62850644editdlrm
errors.pyo62850644editdlrm
extension.py109040644editdlrm
extension.pyc74120644editdlrm
extension.pyo71860644editdlrm
fancy_getopt.py179480644editdlrm
fancy_getopt.pyc119580644editdlrm
fancy_getopt.pyo117810644editdlrm
filelist.py126890644editdlrm
filelist.pyc107560644editdlrm
filelist.pyo107560644editdlrm
file_util.py81310644editdlrm
file_util.pyc67500644editdlrm
file_util.pyo67500644editdlrm
log.py16860644editdlrm
log.pyc27860644editdlrm
log.pyo27860644editdlrm
msvc9compiler.py310040644editdlrm
msvc9compiler.pyc214970644editdlrm
msvc9compiler.pyo214240644editdlrm
msvccompiler.py236370644editdlrm
msvccompiler.pyc175250644editdlrm
msvccompiler.pyo175250644editdlrm
README2950644editdlrm
spawn.py86480644editdlrm
spawn.pyc64270644editdlrm
spawn.pyo64270644editdlrm
sysconfig.py177070644editdlrm
sysconfig.py.debug-build176220644editdlrm
sysconfig.pyc134040644editdlrm
sysconfig.pyo134040644editdlrm
text_file.py124280644editdlrm
text_file.pyc92590644editdlrm
text_file.pyo92590644editdlrm
unixccompiler.py142220644editdlrm
unixccompiler.py.distutils-rpath136770644editdlrm
unixccompiler.pyc82290644editdlrm
unixccompiler.pyo82290644editdlrm
util.py182360644editdlrm
util.pyc143860644editdlrm
util.pyo143860644editdlrm
version.py114330644editdlrm
version.pyc72080644editdlrm
version.pyo72080644editdlrm
versionpredicate.py50950644editdlrm
versionpredicate.pyc55420644editdlrm
versionpredicate.pyo55420644editdlrm
__init__.py2360644editdlrm
__init__.pyc4150644editdlrm
__init__.pyo4150644editdlrm
Edit: /usr/lib64/python2.7/distutils/dir_util.pyc (6786B)
 {fc@sdZdZddlZddlZddlmZmZddlmZia dddd Z dddd Z ddddddd Z d Z ddd ZdZdS(sWdistutils.dir_util Utility functions for manipulating directories and directory trees.s$Id$iN(tDistutilsFileErrortDistutilsInternalError(tlogiiic Cst|ts"td|fntjj|}g}tjj|sX|dkr\|Stjtjj |r{|Stjj |\}}|g}xK|r|rtjj| rtjj |\}}|j d|qWx|D]}tjj ||}tjj |} tj| r3qn|dkrRt jd|n|sytj||WnWtk r} | jtjkotjj|std|| jdfqnX|j|ndt|  "  $!c Csi}x3|D]+}d|tjj|tjj|tjk r\} } |rwg} qtd|| fnX|st|d|ng} x1| D])} tjj || }tjj || }| j drqn|rktjj |rktj |}|dkrBt jd||n|s[tj||n| j|qtjj|r| jt||||||d|d |q||||||d|d || j|qW| S( sCopy an entire directory tree 'src' to a new location 'dst'. Both 'src' and 'dst' must be directory names. If 'src' is not a directory, raise DistutilsFileError. If 'dst' does not exist, it is created with 'mkpath()'. The end result of the copy is that every file in 'src' is copied to 'dst', and directories under 'src' are recursively copied to 'dst'. Return the list of files that were copied or might have been copied, using their output name. The return value is unaffected by 'update' or 'dry_run': it is simply the list of all files under 'src', with the names changed to be under 'dst'. 'preserve_mode' and 'preserve_times' are the same as for 'copy_file'; note that they only apply to regular files, not to directories. If 'preserve_symlinks' is true, symlinks will be copied as symlinks (on platforms that support them!); otherwise (the default), the destination of the symlink will be copied. 'update' and 'verbose' are the same as for 'copy_file'. i(t copy_files&cannot copy tree '%s': not a directoryserror listing files in '%s': %sRs.nfsislinking %s -> %sR(tdistutils.file_utilR-RRR RtlistdirterrorR"Rt startswithtislinktreadlinkRRtsymlinkRtextendt copy_tree(tsrctdstt preserve_modetpreserve_timestpreserve_symlinkstupdateRRR-tnamesRterrstrtoutputstntsrc_nametdst_namet link_dest((s*/usr/lib64/python2.7/distutils/dir_util.pyR6gsH       cCsxwtj|D]f}tjj||}tjj|r`tjj| r`t||q|jtj|fqW|jtj |fdS(sHelper for remove_tree().N( RR/RRR R2t_build_cmdtupleRtremovetrmdir(Rt cmdtuplestftreal_f((s*/usr/lib64/python2.7/distutils/dir_util.pyRDs %cCs|dkrtjd|n|r)dSg}t||x|D]w}yB|d|dtjj|d}|tkrt|=nWqCttfk r}tj d||qCXqCWdS(sRecursively remove an entire directory tree. Any errors are ignored (apart from being reported to stdout if 'verbose' is true). is'removing '%s' (and everything under it)Niserror removing %s: %s( RRRDRRR R tIOErrorRtwarn(t directoryRRRGtcmdR R!((s*/usr/lib64/python2.7/distutils/dir_util.pyt remove_trees    cCsCtjj|\}}|dd!tjkr?||d}n|S(sTake the full path 'path', and make it a relative path. This is useful to make 'path' the second argument to os.path.join(). ii(RRt splitdrivetsep(Rtdrive((s*/usr/lib64/python2.7/distutils/dir_util.pytensure_relatives(t__doc__t __revision__RRtdistutils.errorsRRt distutilsRR R"R,R6RDRNRR(((s*/usr/lib64/python2.7/distutils/dir_util.pyts  ?D