summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-11-20 15:08:50 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-11-20 15:08:50 +0100
commit7630868645b0fbe9e825701b89245839e09dab6c (patch)
treea490c4c3fca30ba2f373e0f6c41bd689e36b2bdc
parent5ca2c83ab0a66c706529c919fdc9cbdc0f5bedb5 (diff)
downloadtrollius-7630868645b0fbe9e825701b89245839e09dab6c.tar.gz
update the changelog
-rw-r--r--doc/changelog.rst8
-rw-r--r--trollius/futures.py2
2 files changed, 9 insertions, 1 deletions
diff --git a/doc/changelog.rst b/doc/changelog.rst
index 88c8bf4..394dcdc 100644
--- a/doc/changelog.rst
+++ b/doc/changelog.rst
@@ -12,6 +12,8 @@ Changes:
waiting for another task and the other task raises an exception, the
traceback object is now copied with the exception. Be careful, storing the
traceback object may create reference leaks.
+* Use ssl.create_default_context() if available to create the default SSL
+ context: Python 2.7.9 and newer, or Python 3.4 and newer.
* On Python 3.5 and newer, reuse socket.socketpair() in the windows_utils
submodule.
* On Python 3.4 and newer, use os.set_inheritable().
@@ -23,6 +25,12 @@ Changes:
calls that were cancelled.
* The destructor of the Return class now shows where the Return object was
created.
+* run_tests.py doesn't catch any exceptions anymore when loading tests, only
+ catch SkipTest.
+* Fix (SSL) tests for the future Python 2.7.9 which includes a "new" ssl
+ module: module backported from Python 3.5.
+* BaseEventLoop.add_signal_handler() now raises an exception if the parameter
+ is a coroutine function.
2014-10-02: Version 1.0.2
diff --git a/trollius/futures.py b/trollius/futures.py
index aff0186..1196377 100644
--- a/trollius/futures.py
+++ b/trollius/futures.py
@@ -140,7 +140,7 @@ class Future(object):
_loop = None
# Used by Python 2 to raise the exception with the original traceback
- # in the exception() method
+ # in the exception() method in debug mode
_exception_tb = None
_log_traceback = False # Used for Python >= 3.4