summaryrefslogtreecommitdiffstats
path: root/python/python-scandir/README
diff options
context:
space:
mode:
author Dimitris Zlatanidis <d.zlatanidis@gmail.com>2016-08-29 02:35:28 +0300
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2016-09-03 07:48:41 +0700
commit9f250d9c3aeab66809f786e27fe826937f193d93 (patch)
treed77cba5cf0fb02abe2e55c139389a205b75a29ca /python/python-scandir/README
parent3ed871491ea93b8cdd747fd5190a4af2b696c96d (diff)
downloadslackbuilds-9f250d9c3aeab66809f786e27fe826937f193d93.tar.gz
slackbuilds-9f250d9c3aeab66809f786e27fe826937f193d93.tar.xz
python/python-scandir: Updated for version 1.3.
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
Diffstat (limited to 'python/python-scandir/README')
-rw-r--r--python/python-scandir/README12
1 files changed, 6 insertions, 6 deletions
diff --git a/python/python-scandir/README b/python/python-scandir/README
index 7fcbf2782f..ae8005a62c 100644
--- a/python/python-scandir/README
+++ b/python/python-scandir/README
@@ -1,13 +1,13 @@
scandir, a better directory iterator and faster os.walk()
-scandir() is a generator version of os.listdir() that returns
-an iterator over files in a directory, and also exposes the
-extra information most OSes provide while iterating files in a
+scandir() is a generator version of os.listdir() that returns
+an iterator over files in a directory, and also exposes the
+extra information most OSes provide while iterating files in a
directory (such as type and stat information).
-This module also includes a version of os.walk() that uses
+This module also includes a version of os.walk() that uses
scandir() to speed it up significantly.
-NOTE: If you’re using Python version 3.5+, os.scandir() and the
-speed improvements to os.walk() are already available in the
+NOTE: If you’re using Python version 3.5+, os.scandir() and the
+speed improvements to os.walk() are already available in the
standard library.