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
9025f1c5
Commit
9025f1c5
authored
Jan 02, 2014
by
R David Murray
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
whatsnew: sqlite3 uri parm, unittest.main defaultTest, ftplib.Netrc deprecation
parent
6e731b0a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
Doc/whatsnew/3.4.rst
Doc/whatsnew/3.4.rst
+17
-0
Misc/NEWS
Misc/NEWS
+1
-1
No files found.
Doc/whatsnew/3.4.rst
View file @
9025f1c5
...
...
@@ -915,6 +915,15 @@ using the new :mod:`enum` module. This allows meaningful names to be printed
during debugging, instead of integer "magic numbers".
sqlite3
-------
A new boolean parameter, *uri*, to the :func:`~sqlite3.connect` function can
be used to indicate that the *database* parameter is a ``uri`` (see
the `SQLite URI documentation <http://www.sqlite.org/uri.html>`_).
(Contributed by poq in :issue:`13773`.)
ssl
---
...
...
@@ -998,6 +1007,10 @@ Support for easy dynamically-generated subtests using the
:meth:`~unittest.TestCase.subTest` context manager.
(Contributed by Antoine Pitrou in :issue:`16997`.)
:func:`unittest.main` now also accepts an iterable of test names for
*defaultTest*, where previously it only accepted a single test name as a
string. (Contributed by Jyrki Pulliainen in :issue:`15132`.)
venv
----
...
...
@@ -1246,6 +1259,10 @@ Deprecated Python Modules, Functions and Methods
* MD5 as default digestmod for :mod:`hmac` is deprecated. Python 3.6 will
require an explicit digest name or constructor as *digestmod* argument.
* The internal ``Netrc`` class in the :mod:`ftplib` module has been documented
as deprecated in its docstring for quite some time. It now emits a
:exc:`DeprecationWarning` and will be removed completely in Python 3.5.
Deprecated Functions and Types in the C API
-------------------------------------------
...
...
Misc/NEWS
View file @
9025f1c5
...
...
@@ -2439,7 +2439,7 @@ Library
- Issue #4591: Uid and gid values larger than 2**31 are supported now.
- Issue #17141: random.vonmisesvariate() no
more
hangs for large kappas.
- Issue #17141: random.vonmisesvariate() no
longer
hangs for large kappas.
- Issue #17149: Fix random.vonmisesvariate to always return results in
[0, 2*math.pi].
...
...
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