Home | History | Annotate | Download | only in whatsnew

Lines Matching full:scandir

120 * The new :func:`os.scandir` function provides a
447 PEP 471 - os.scandir() function -- a better and faster directory iterator
450 :pep:`471` adds a new directory iteration function, :func:`os.scandir`,
452 implemented using ``scandir``, which makes it 3 to 5 times faster
457 Additionally, ``scandir`` returns an iterator, as opposed to returning
461 The following example shows a simple use of :func:`os.scandir` to display all
466 for entry in os.scandir(path):
472 :pep:`471` -- os.scandir() function -- a better and faster directory iterator
1482 The new :func:`~os.scandir` function returning an iterator of
1483 :class:`~os.DirEntry` objects has been added. If possible, :func:`~os.scandir`
2108 and by 7 to 20 times on Windows. This was done using the new :func:`os.scandir`