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
faf7060f
Commit
faf7060f
authored
Nov 09, 2015
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed markup in Misc/NEWS.
parent
b63902a7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
Misc/NEWS
Misc/NEWS
+8
-7
No files found.
Misc/NEWS
View file @
faf7060f
...
@@ -1675,7 +1675,7 @@ Core and Builtins
...
@@ -1675,7 +1675,7 @@ Core and Builtins
-
Issue
#
20637
:
Key
-
sharing
now
also
works
for
instance
dictionaries
of
-
Issue
#
20637
:
Key
-
sharing
now
also
works
for
instance
dictionaries
of
subclasses
.
Patch
by
Peter
Ingebretson
.
subclasses
.
Patch
by
Peter
Ingebretson
.
-
Issue
#
12546
:
Allow
\
x00
to
be
used
as
a
fill
character
when
using
str
,
int
,
-
Issue
#
12546
:
Allow
``\
x00
``
to
be
used
as
a
fill
character
when
using
str
,
int
,
float
,
and
complex
__format__
methods
.
float
,
and
complex
__format__
methods
.
-
Issue
#
13598
:
Modify
string
.
Formatter
to
support
auto
-
numbering
of
-
Issue
#
13598
:
Modify
string
.
Formatter
to
support
auto
-
numbering
of
...
@@ -3418,7 +3418,7 @@ Build
...
@@ -3418,7 +3418,7 @@ Build
upgrade pip by default, using the bundled pip provided by the new ensurepip
upgrade pip by default, using the bundled pip provided by the new ensurepip
module. A new configure option, --with-ensurepip[=upgrade|install|no], is
module. A new configure option, --with-ensurepip[=upgrade|install|no], is
available to override the default ensurepip "--upgrade" option. The option
available to override the default ensurepip "--upgrade" option. The option
can also be set with "make [alt]install ENSUREPIP=[upgrade|install
\
no]".
can also be set with "make [alt]install ENSUREPIP=[upgrade|install
|
no]".
- Issue #19551: PEP 453 - the OS X installer now installs pip by default.
- Issue #19551: PEP 453 - the OS X installer now installs pip by default.
...
@@ -3587,7 +3587,7 @@ Library
...
@@ -3587,7 +3587,7 @@ Library
- Issue #10712: 2to3 has a new "asserts" fixer that replaces deprecated names
- Issue #10712: 2to3 has a new "asserts" fixer that replaces deprecated names
of unittest methods (e.g. failUnlessEqual -> assertEqual).
of unittest methods (e.g. failUnlessEqual -> assertEqual).
- Issue #18037: 2to3 now escapes
'
\
u
' and '
\
U
'
in native strings.
- Issue #18037: 2to3 now escapes
``'
\
u
'`` and ``'
\
U
'``
in native strings.
- Issue #17839: base64.decodebytes and base64.encodebytes now accept any
- Issue #17839: base64.decodebytes and base64.encodebytes now accept any
object that exports a 1 dimensional array of bytes (this means the same
object that exports a 1 dimensional array of bytes (this means the same
...
@@ -4254,7 +4254,7 @@ Core and Builtins
...
@@ -4254,7 +4254,7 @@ Core and Builtins
-
Issue
#
5308
:
Raise
ValueError
when
marshalling
too
large
object
(
a
sequence
-
Issue
#
5308
:
Raise
ValueError
when
marshalling
too
large
object
(
a
sequence
with
size
>=
2
**
31
),
instead
of
producing
illegal
marshal
data
.
with
size
>=
2
**
31
),
instead
of
producing
illegal
marshal
data
.
-
Issue
#
12983
:
Bytes
literals
with
invalid
\
x
escape
now
raise
a
SyntaxError
-
Issue
#
12983
:
Bytes
literals
with
invalid
``\
x
``
escape
now
raise
a
SyntaxError
and
a
full
traceback
including
line
number
.
and
a
full
traceback
including
line
number
.
-
Issue
#
16967
:
In
function
definition
,
evaluate
positional
defaults
before
-
Issue
#
16967
:
In
function
definition
,
evaluate
positional
defaults
before
...
@@ -4625,7 +4625,7 @@ Library
...
@@ -4625,7 +4625,7 @@ Library
loaded
X
.509
certs
,
X
.509
CA
certs
and
CRLs
.
loaded
X
.509
certs
,
X
.509
CA
certs
and
CRLs
.
-
Issue
#
18167
:
cgi
.
FieldStorage
no
longer
fails
to
handle
multipart
/
form
-
data
-
Issue
#
18167
:
cgi
.
FieldStorage
no
longer
fails
to
handle
multipart
/
form
-
data
when
\
r
\
n
appears
at
end
of
65535
bytes
without
other
newlines
.
when
``\
r
\
n
``
appears
at
end
of
65535
bytes
without
other
newlines
.
-
Issue
#
18076
:
Introduce
importlib
.
util
.
decode_source
().
-
Issue
#
18076
:
Introduce
importlib
.
util
.
decode_source
().
...
@@ -5238,8 +5238,9 @@ Library
...
@@ -5238,8 +5238,9 @@ Library
- Issue #16900: Issue a ResourceWarning when an ssl socket is left unclosed.
- Issue #16900: Issue a ResourceWarning when an ssl socket is left unclosed.
- Issue #13899: \A, \Z, and \B now correctly match the A, Z, and B literals
- Issue #13899: ``\A``, ``\Z``, and ``\B`` now correctly match the A, Z,
when used inside character classes (e.g. '
[\
A
]
'). Patch by Matthew Barnett.
and B literals when used inside character classes (e.g. ``'
[\
A
]
'``).
Patch by Matthew Barnett.
- Issue #15545: Fix regression in sqlite3'
s
iterdump
method
where
it
was
- Issue #15545: Fix regression in sqlite3'
s
iterdump
method
where
it
was
failing
if
the
connection
used
a
row
factory
(
such
as
sqlite3
.
Row
)
that
failing
if
the
connection
used
a
row
factory
(
such
as
sqlite3
.
Row
)
that
...
...
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