File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ details.
106
106
Changes
107
107
=======
108
108
109
- 1.1 (????-??-?? )
109
+ 1.1 (2016-11-06 )
110
110
----------------
111
111
112
112
* Support for ``asend ``\/ ``athrow ``\/ ``aclose ``
@@ -117,6 +117,9 @@ Changes
117
117
<https://www.python.org/dev/peps/pep-0492/#api-design-and-implementation-revisions> `_
118
118
where ``__aiter__ `` should now be a regular method instead of an
119
119
async method.
120
+ * Adapt to Python 3.5.2's pickiness about iterating over
121
+ already-exhausted coroutines.
122
+ * 100% test coverage.
120
123
121
124
122
125
1.0 (2016-07-03)
Original file line number Diff line number Diff line change 1
1
from .impl import async_generator , yield_ , yield_from_
2
2
3
- __version__ = "1.0+dev "
3
+ __version__ = "1.1 "
4
4
5
5
__all__ = ["async_generator" , "yield_" , "yield_from_" ]
You can’t perform that action at this time.
0 commit comments