summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-01-03 20:46:24 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-01-03 20:46:24 (GMT)
commitdb085f56b972d96f439119026853cad5b0a0fd4b (patch)
tree97b5786c4583ca7a2cec933ac0f55fd448e6d209 /Doc
parent1c0689c613b61c8944456e78c5b592e3aaa40aba (diff)
downloadcpython-db085f56b972d96f439119026853cad5b0a0fd4b.zip
cpython-db085f56b972d96f439119026853cad5b0a0fd4b.tar.gz
cpython-db085f56b972d96f439119026853cad5b0a0fd4b.tar.bz2
whatsnew: unittest discovery sorting, urlllib Request getter/setter removals.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/whatsnew/3.4.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.4.rst b/Doc/whatsnew/3.4.rst
index ccdd721..2727d69 100644
--- a/Doc/whatsnew/3.4.rst
+++ b/Doc/whatsnew/3.4.rst
@@ -1019,6 +1019,10 @@ If :class:`~unittest.SkipTest` is raised during test discovery (that is, at the
module level in the test file), it is now reported as a skip instead of an
error. (Contributed by Zach Ware in :issue:`16935`.)
+:meth:`~unittest.TestLoader.discover` now sorts the discovered files to provide
+consistent test ordering. (Contributed by Martin Melin and Jeff Ramnani in
+:issue:`16709`.)
+
venv
----
@@ -1318,6 +1322,11 @@ removed in Python 3.4:
:class:`~http.client.HTTPSConnection` has been removed. HTTP 0.9-style
"Simple Responses" are no longer supported.
+* The deprecated :mod:`urllib.request.Request` getter and setter methods
+ ``add_data``, ``has_data``, ``get_data``, ``get_type``, ``get_host``,
+ ``get_selector``, ``set_proxy``, ``get_origin_req_host``, and
+ ``is_unverifiable`` have been removed (use direct attribute access instead).
+
Porting to Python 3.4
=====================