summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-05-26 07:25:48 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-05-26 07:25:48 (GMT)
commit6f68314b2ac64ac6a47c265e2d1265398cfc8f9c (patch)
tree391e50e4278dc5a44345401065d370da6f28e49d
parent09479d0b946bd711c45fc221edacc53dcd506637 (diff)
parentca208a03f9c8db0ee66db70f13be06d970c27d9b (diff)
downloadcpython-6f68314b2ac64ac6a47c265e2d1265398cfc8f9c.zip
cpython-6f68314b2ac64ac6a47c265e2d1265398cfc8f9c.tar.gz
cpython-6f68314b2ac64ac6a47c265e2d1265398cfc8f9c.tar.bz2
Moved Misc/NEWS entries to correct section and fix formatting.
-rw-r--r--Misc/NEWS16
1 files changed, 8 insertions, 8 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dabfa8a..e2d01dc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -45,12 +45,6 @@ Core and Builtins
- Issue #23290: Optimize set_merge() for cases where the target is empty.
(Contributed by Serhiy Storchaka.)
-- Issue #20274: When calling a _sqlite.Connection, it now complains if passed
- any keyword arguments. Previously it silently ignored them.
-
-- Issue #20274: Remove ignored and erroneous "kwargs" parameters from three
- METH_VARARGS methods on _sqlite.Connection.
-
- Issue #2292: PEP 448: Additional Unpacking Generalizations.
- Issue #24096: Make warnings.warn_explicit more robust against mutation of the
@@ -175,6 +169,12 @@ Library
(utf8/internationalized email) and automatically encodes non-ASCII
usernames and passwords to UTF8.
+- Issue #20274: When calling a _sqlite.Connection, it now complains if passed
+ any keyword arguments. Previously it silently ignored them.
+
+- Issue #20274: Remove ignored and erroneous "kwargs" parameters from three
+ METH_VARARGS methods on _sqlite.Connection.
+
- Issue #24134: assertRaises(), assertRaisesRegex(), assertWarns() and
assertWarnsRegex() checks now emits a deprecation warning when callable is
None or keyword arguments except msg is passed in the context manager mode.
@@ -3515,7 +3515,7 @@ Library
- Issue #19782: imaplib now supports SSLContext.check_hostname and server name
indication for TLS/SSL connections.
-- Issue 20123: Fix pydoc.synopsis() for "binary" modules.
+- Issue #20123: Fix pydoc.synopsis() for "binary" modules.
- Issue #19834: Support unpickling of exceptions pickled by Python 2.
@@ -6785,7 +6785,7 @@ Documentation
- Issue #15940: Specify effect of locale on time functions.
-- Issue 17538: Document XML vulnerabilties
+- Issue #17538: Document XML vulnerabilties
- Issue #16642: sched.scheduler timefunc initial default is time.monotonic.
Patch by Ramchandra Apte