Lines Matching refs:used
441 """Function that can be used as copytree() ignore parameter.
444 that are used to exclude files"""
547 The optional copy_function argument is a callable that will be used
549 destination path as arguments. By default, copy2() is used, but any
550 function that supports the same signature (like copy()) can be used.
795 If the destination is on our current filesystem, then rename() is used.
800 The optional `copy_function` argument is a callable that will be used
802 By default, copy2() is used, but any function that supports the same
803 signature (like copy()) can be used.
906 'owner' and 'group' can be used to define an owner and a group for the
908 will be used.
1063 used to create archives. If provided, extra_args is a sequence of
1098 'owner' and 'group' are used when creating a tar archive. By default,
1180 used to unpack archives. The callable will receive archives to unpack.
1283 is unpacked. If not provided, the current working directory is used.
1329 _ntuple_diskusage = collections.namedtuple('usage', 'total used free')
1331 _ntuple_diskusage.used.__doc__ = 'Used space in bytes'
1337 Returned value is a named tuple with attributes 'total', 'used' and
1338 'free', which are the amount of total, used and free space, in bytes.
1343 used = (st.f_blocks - st.f_bfree) * st.f_frsize
1344 return _ntuple_diskusage(total, used, free)
1349 _ntuple_diskusage = collections.namedtuple('usage', 'total used free')
1354 Returned values is a named tuple with attributes 'total', 'used' and
1355 'free', which are the amount of total, used and free space, in bytes.
1358 used = total - free
1359 return _ntuple_diskusage(total, used, free)
1399 the value is a positive integer, it is used.
1408 is used. Fallback defaults to (80, 24) which is the default
1409 size used by many terminal emulators.