summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* dev-python/scandir: stable for amd64+x86.Patrice Clement2017-10-011-1/+1
| | | | Package-Manager: Portage-2.3.8, Repoman-2.3.1
* dev-python/scandir: version bump.Patrice Clement2017-10-012-0/+24
| | | | Package-Manager: Portage-2.3.8, Repoman-2.3.1
* dev-python/scandir: Support newer pythonPacho Ramos2017-09-251-1/+1
| | | | Package-Manager: Portage-2.3.10, Repoman-2.3.3
* dev-python/scandir: add myself to the list of maintainers.Patrice Clement2017-07-261-0/+4
| | | | Package-Manager: Portage-2.3.6, Repoman-2.3.1
* dev-python/scandir: new package.Marius Brehler2017-07-263-0/+36
A better directory iterator and faster os.walk(). scandir() is a directory iteration function like os.listdir(), except that instead of returning a list of bare filenames, it yields DirEntry objects that include file type and stat information along with the name. Using scandir() increases the speed of os.walk() by 2-20 times (depending on the platform and file system) by avoiding unnecessary calls to os.stat() in most cases. Required by dev-python/pathlib2[python2_7,python3_4]. Gentoo-Bug: https://bugs.gentoo.org/626120 Package-Manager: Portage-2.3.6, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/5207