backports shutil copytree (mainly for Python2)
Project description
backports.shutil_copytree
Usage
try:
from inspect import signature
except ImportError:
try:
from funcsigs import signature
except ImportError:
signature = None
from shutil import copytree
if 'dirs_exist_ok' not in signature(copytree).parameters:
from backports.shutil_copytree import copytree
Caveats
- symlink stat is not copied when Python<3.3
- directory junctions check on Windows Python<3.8 is done via pywin32, which is less-tested.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file backports.shutil_copytree-0.0.1.0.tar.gz
.
File metadata
- Download URL: backports.shutil_copytree-0.0.1.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.7.1 requests/2.25.1 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/2.7.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e59ba1f6ac653d754daa1e526ba9f601875af32b94bb796812c36321e658c492 |
|
MD5 | 83c76ea7efb110ca3da63332f91196e1 |
|
BLAKE2b-256 | 577c800c3b04c117104ee929ebab52529a5cf972685fc53f47782b6aceed0922 |