src/a/p/applib-HEAD/applib/sh.py applib(Download)
_, why = sys.exec_info()
errors.extend((src, dst, str(why)))
if errors:
raise shutil.Error(errors)
# WindowsError is not available on other platforms
src/a/p/applib-1.0.1/applib/sh.py applib(Download)
_, why = sys.exec_info()
errors.extend((src, dst, str(why)))
if errors:
raise shutil.Error(errors)
# WindowsError is not available on other platforms
src/t/r/Trac-0.12/trac/util/__init__.py Trac(Download)
except OSError, why:
errors.append((src, dst, str(why)))
if errors:
raise shutil.Error(errors)
copytree_rec(str_path(src), str_path(dst))
src/p/y/pycoblog-HEAD/blog_remote.py pycoblog(Download)
import os from sys import stderr, argv, exit from shutil import move from shutil import Error as ShutilError from tempfile import mkstemp from codecs import open from getopt import gnu_getopt, GetoptError
src/h/a/hashedassets-0.2.1/src/hashedassets/__init__.py hashedassets(Download)
splitext, normpath, dirname, commonprefix, \
split as path_split
from re import split as re_split
from shutil import copy2, Error as shutil_Error
import sys
from itertools import chain