summaryrefslogtreecommitdiff
path: root/fs/utils.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-03-08 12:50:23 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2011-03-08 12:50:23 +0000
commit51b13a2dc73f9545d8cf6b051ce0a58027b9e370 (patch)
tree25895f825f86b36be4747e107daf85abb9a936da /fs/utils.py
parent1e032bdcc03a5ee9ebfc92780a5aa8e84a2179d0 (diff)
downloadpyfilesystem-git-51b13a2dc73f9545d8cf6b051ce0a58027b9e370.tar.gz
Doc fixes
Diffstat (limited to 'fs/utils.py')
-rw-r--r--fs/utils.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/utils.py b/fs/utils.py
index 48f39aa..016ce71 100644
--- a/fs/utils.py
+++ b/fs/utils.py
@@ -18,7 +18,7 @@ import os
import sys
import stat
from fs.mountfs import MountFS
-from fs.path import pathjoin, pathsplit
+from fs.path import pathjoin
from fs.errors import DestinationExistsError
from fs.base import FS
@@ -32,7 +32,7 @@ def copyfile(src_fs, src_path, dst_fs, dst_path, overwrite=True, chunk_size=64*1
:param src_path: -- Source path
:param dst_fs: Destination filesystem object
:param dst_path: Destination filesystem object
- :param chunk_size: Size of chunks to move if system copyfile is not available (default 16K)
+ :param chunk_size: Size of chunks to move if system copyfile is not available (default 64K)
"""
@@ -76,7 +76,7 @@ def copyfile_non_atomic(src_fs, src_path, dst_fs, dst_path, overwrite=True, chun
:param src_path: -- Source path
:param dst_fs: Destination filesystem object
:param dst_path: Destination filesystem object
- :param chunk_size: Size of chunks to move if system copyfile is not available (default 16K)
+ :param chunk_size: Size of chunks to move if system copyfile is not available (default 64K)
"""
@@ -109,7 +109,7 @@ def movefile(src_fs, src_path, dst_fs, dst_path, overwrite=True, chunk_size=64*1
:param src_path: Source path
:param dst_fs: Destination filesystem object
:param dst_path: Destination filesystem object
- :param chunk_size: Size of chunks to move if system copyfile is not available (default 16K)
+ :param chunk_size: Size of chunks to move if system copyfile is not available (default 64K)
"""
src_syspath = src_fs.getsyspath(src_path, allow_none=True)
@@ -151,13 +151,13 @@ def movefile(src_fs, src_path, dst_fs, dst_path, overwrite=True, chunk_size=64*1
def movefile_non_atomic(src_fs, src_path, dst_fs, dst_path, overwrite=True, chunk_size=64*1024):
- """A non atomic version of movefile (wont block other threads using src_fs or dst_fs
+ """A non atomic version of movefile (wont block other threads using src_fs or dst_fs)
:param src_fs: Source filesystem object
:param src_path: Source path
:param dst_fs: Destination filesystem object
:param dst_path: Destination filesystem object
- :param chunk_size: Size of chunks to move if system copyfile is not available (default 16K)
+ :param chunk_size: Size of chunks to move if system copyfile is not available (default 64K)
"""