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
c9855aea
Commit
c9855aea
authored
Jan 04, 2014
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whatsnew: from __future__ string exception, attribute UTF-32 decoder speedup.
And more news entry clarifications.
parent
86767feb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
4 deletions
+11
-4
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+8
-1
Misc/NEWS
Misc/NEWS
+3
-3
No files found.
Doc/whatsnew/3.4.rst
View file @
c9855aea
...
@@ -1234,7 +1234,8 @@ Other Improvements
...
@@ -1234,7 +1234,8 @@ Other Improvements
Significant Optimizations
Significant Optimizations
=========================
=========================
* The UTF-32 decoder is now 3x to 4x faster.
* The UTF-32 decoder is now 3x to 4x faster. (Contributed by Serhiy Storchaka
in :issue:`14625`.)
* The cost of hash collisions for sets is now reduced. Each hash table
* The cost of hash collisions for sets is now reduced. Each hash table
probe now checks a series of consecutive, adjacent key/hash pairs before
probe now checks a series of consecutive, adjacent key/hash pairs before
...
@@ -1437,6 +1438,12 @@ Changes in the Python API
...
@@ -1437,6 +1438,12 @@ Changes in the Python API
keyword. If you've been paying attention to deprecation warnings your code
keyword. If you've been paying attention to deprecation warnings your code
should already be specifying any additional arguments via keywords.
should already be specifying any additional arguments via keywords.
* Strings between ``from __future__ import ...`` statements now *always* raise
a :exc:`SyntaxError`. Previously if there was no leading docstring, an
interstitial string would sometimes be ignored. This brings CPython into
compliance with the language spec; Jython and PyPy already were.
(:issue:`17434`).
Changes in the C API
Changes in the C API
--------------------
--------------------
...
...
Misc/NEWS
View file @
c9855aea
...
@@ -2243,10 +2243,10 @@ Library
...
@@ -2243,10 +2243,10 @@ Library
calls
.
calls
.
-
Issue
#
17566
:
Make
importlib
.
abc
.
Loader
.
module_repr
()
optional
instead
of
an
-
Issue
#
17566
:
Make
importlib
.
abc
.
Loader
.
module_repr
()
optional
instead
of
an
abstractmethod
and
raising
NotImplementedError
so
as
to
be
ignored
by
default
.
abstractmethod
;
now
it
raises
NotImplementedError
so
as
to
be
ignored
by
default
.
-
Issue
#
17678
:
Remove
the
use
of
deprecated
method
in
http
/
cookiejar
.
py
.
-
Issue
#
17678
:
Remove
the
use
of
deprecated
method
in
http
/
cookiejar
.
py
by
Changing
the
usage
of
get_origin_req_host
()
to
origin_req_host
.
changing
the
call
to
get_origin_req_host
()
to
origin_req_host
.
-
Issue
#
17666
:
Fix
reading
gzip
files
with
an
extra
field
.
-
Issue
#
17666
:
Fix
reading
gzip
files
with
an
extra
field
.
...
...
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