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
e1ed895a
Commit
e1ed895a
authored
Dec 24, 2013
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pty.spawn returns os.waitpid; optimization of BZ2File and LZMAFile.
parent
baf50f80
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
1 deletion
+14
-1
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+13
-0
Misc/NEWS
Misc/NEWS
+1
-1
No files found.
Doc/whatsnew/3.4.rst
View file @
e1ed895a
...
...
@@ -473,6 +473,7 @@ trace memory blocks allocated by Python. It provides the following information:
Improved Modules
================
abc
---
...
...
@@ -480,6 +481,7 @@ New function :func:`abc.get_cache_token` can be used to know when to invalidate
caches that are affected by changes in the object graph. (Contributed
by Łukasz Langa in :issue:`16832`.)
aifc
----
...
...
@@ -786,6 +788,13 @@ The :mod:`pprint` module now supports *compact* mode for formatting long
sequences (:issue:`19132`).
pty
---
:func:`pty.spawn` now returns the status value from :func:`os.waitpid` on
the child process, instead of ``None``. (Contributed by Gregory P. Smith.)
pydoc
-----
...
...
@@ -1110,6 +1119,10 @@ Significant Optimizations
:issue:`19219`, :issue:`19218`, :issue:`19209`, :issue:`19205` and
:issue:`9548`)
* :class:`bz2.BZ2File` is now as fast or faster than the Python2 version for
most cases. :class:`lzma.LZMAFile` has also been optimized. (Contributed by
Serhiy Storchaka and Nadeem Vawda in :issue:`16034`.)
Deprecated
==========
...
...
Misc/NEWS
View file @
e1ed895a
...
...
@@ -2817,7 +2817,7 @@ Library
- Issue #12034: Fix bogus caching of result in check_GetFinalPathNameByHandle.
Patch by Atsuo Ishimoto.
- Improve performance of `lzma.LZMAFile`.
- Improve performance of `lzma.LZMAFile`
(see also issue #16034)
.
- Issue #16220: wsgiref now always calls close() on an iterable response.
Patch by Brent Tubbs.
...
...
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