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
40301c04
Commit
40301c04
authored
Sep 08, 2015
by
Yury Selivanov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whatsnew/3.5: Better formatting; add traceback to significantly improved stdlib
parent
100fc3fb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
Doc/whatsnew/3.5.rst
Doc/whatsnew/3.5.rst
+11
-1
No files found.
Doc/whatsnew/3.5.rst
View file @
40301c04
...
@@ -83,13 +83,16 @@ New library modules:
...
@@ -83,13 +83,16 @@ New library modules:
New built-in features:
New built-in features:
* ``bytes % args``, ``bytearray % args``: :pep:`461` - Adding ``%`` formatting
* ``bytes % args``, ``bytearray % args``: :pep:`461` - Adding ``%`` formatting
to bytes and bytearray
to bytes and bytearray.
* ``b'\xf0\x9f\x90\x8d'.hex()``, ``bytearray(b'\xf0\x9f\x90\x8d').hex()``,
* ``b'\xf0\x9f\x90\x8d'.hex()``, ``bytearray(b'\xf0\x9f\x90\x8d').hex()``,
``memoryview(b'\xf0\x9f\x90\x8d').hex()``: :issue:`9951` - A ``hex`` method
``memoryview(b'\xf0\x9f\x90\x8d').hex()``: :issue:`9951` - A ``hex`` method
has been added to bytes, bytearray, and memoryview.
has been added to bytes, bytearray, and memoryview.
* Generators have new ``gi_yieldfrom`` attribute, which returns the
* Generators have new ``gi_yieldfrom`` attribute, which returns the
object being iterated by ``yield from`` expressions. (Contributed
object being iterated by ``yield from`` expressions. (Contributed
by Benno Leslie and Yury Selivanov in :issue:`24450`.)
by Benno Leslie and Yury Selivanov in :issue:`24450`.)
* New :exc:`RecursionError` exception. (Contributed by Georg Brandl
* New :exc:`RecursionError` exception. (Contributed by Georg Brandl
in :issue:`19235`.)
in :issue:`19235`.)
...
@@ -101,6 +104,7 @@ Implementation improvements:
...
@@ -101,6 +104,7 @@ Implementation improvements:
(:issue:`19977`).
(:issue:`19977`).
* :pep:`488`, the elimination of ``.pyo`` files.
* :pep:`488`, the elimination of ``.pyo`` files.
* :pep:`489`, multi-phase initialization of extension modules.
* :pep:`489`, multi-phase initialization of extension modules.
Significantly Improved Library Modules:
Significantly Improved Library Modules:
...
@@ -120,6 +124,11 @@ Significantly Improved Library Modules:
...
@@ -120,6 +124,11 @@ Significantly Improved Library Modules:
protocol handling from network IO. (Contributed by Geert Jansen in
protocol handling from network IO. (Contributed by Geert Jansen in
:issue:`21965`.)
:issue:`21965`.)
* :mod:`traceback` has new lightweight and convenient to work with
classes :class:`~traceback.TracebackException`,
:class:`~traceback.StackSummary`, and :class:`traceback.FrameSummary`.
(Contributed by Robert Collins in :issue:`17911`.)
Security improvements:
Security improvements:
* SSLv3 is now disabled throughout the standard library.
* SSLv3 is now disabled throughout the standard library.
...
@@ -135,6 +144,7 @@ Windows improvements:
...
@@ -135,6 +144,7 @@ Windows improvements:
* A new installer for Windows has replaced the old MSI. See :ref:`using-on-windows`
* A new installer for Windows has replaced the old MSI. See :ref:`using-on-windows`
for more information.
for more information.
* Windows builds now use Microsoft Visual C++ 14.0, and extension modules
* Windows builds now use Microsoft Visual C++ 14.0, and extension modules
should use the same.
should use the same.
...
...
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