Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
37f20348
Commit
37f20348
authored
Mar 10, 2015
by
Victor Stinner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #22524: Rephrase scandir addition in What's New in Python 3.5
Patch written by Ben Hoyt.
parent
524a5ba1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
8 deletions
+18
-8
Doc/whatsnew/3.5.rst
Doc/whatsnew/3.5.rst
+18
-8
No files found.
Doc/whatsnew/3.5.rst
View file @
37f20348
...
...
@@ -115,13 +115,17 @@ Please read on for a comprehensive list of user-facing changes.
PEP 471 - os.scandir() function -- a better and faster directory iterator
-------------------------------------------------------------------------
:pep:`471` includes a new directory iteration function, :func:`os.scandir`,
in the standard library.
:pep:`471` adds a new directory iteration function, :func:`os.scandir`,
to the standard library. Additionally, :func:`os.walk` is now
implemented using :func:`os.scandir`, which speeds it up by 3-5 times
on POSIX systems and by 7-20 times on Windows systems.
PEP and implementation written by Ben Hoyt with the help of Victor Stinner.
.. seealso::
:pep:`471` -- os.scandir() function -- a better and faster directory
iterator
.
iterator
PEP 475: Retry system calls failing with EINTR
...
...
@@ -131,8 +135,6 @@ PEP 475: Retry system calls failing with EINTR
this means that user code doesn't have to deal with EINTR or InterruptedError
manually, and should make it more robust against asynchronous signal reception.
PEP and implementation written by Ben Hoyt with the help of Victor Stinner.
.. seealso::
:pep:`475` -- Retry system calls failing with EINTR
...
...
@@ -294,9 +296,11 @@ json
os
--
* New :func:`os.scandir` function: Return an iterator of :class:`os.DirEntry`
objects corresponding to the entries in the directory given by *path*.
(Implementation written by Ben Hoyt with the help of Victor Stinner.)
* New :func:`os.scandir` function that exposes file information from
the operating system when listing a directory. :func:`os.scandir`
returns an iterator of :class:`os.DirEntry` objects corresponding to
the entries in the directory given by *path*. (Contributed by Ben
Hoyt with the help of Victor Stinner in :issue:`22524`.)
* :class:`os.stat_result` now has a :attr:`~os.stat_result.st_file_attributes`
attribute on Windows. (Contributed by Ben Hoyt in :issue:`21719`.)
...
...
@@ -419,6 +423,12 @@ Optimizations
The following performance enhancements have been added:
* :func:`os.walk` has been sped up by 3-5x on POSIX systems and 7-20x
on Windows. This was done using the new :func:`os.scandir` function,
which exposes file information from the underlying ``readdir`` and
``FindFirstFile``/``FindNextFile`` system calls. (Contributed by
Ben Hoyt with help from Victor Stinner in :issue:`23605`.)
* Construction of ``bytes(int)`` (filled by zero bytes) is faster and use less
memory for large objects. ``calloc()`` is used instead of ``malloc()`` to
allocate memory for these objects.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment