We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31dd718 commit a79a08aCopy full SHA for a79a08a
CHANGES.rst
@@ -1,6 +1,16 @@
1
CHANGES
2
=======
3
4
+1.4.0 (2017-09-09)
5
+------------------
6
+
7
+* Implement `remaining` property (#20)
8
9
+ * If timeout is not started yet or started unconstrained:
10
+ `remaining` is `None`
11
+ * If timeout is expired: `remaining` is `0.0`
12
+ * All others: roughly amount of time before `TimeoutError` is triggered
13
14
1.3.0 (2017-08-23)
15
------------------
16
async_timeout/__init__.py
@@ -1,7 +1,7 @@
import asyncio
-__version__ = '1.3.0'
+__version__ = '1.4.0'
class timeout:
0 commit comments