-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGES
45 lines (45 loc) · 1.68 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
* Release 0.12.0
* Add asynkit.experimental.priority
* Release 0.11.2
* Add InterrupException and InterruptCondition, to handle interruptions
other than CancelledError
* Release 0.11.0
* Remove Deque assumption in AbstractSchedulingLoop. Remove frivolous "rotate" feature.
* Release 0.10.5
* Remove the "immediate" keyword from `task_throw()`
* Release 0.10.4
* Allow C Tasks to be interrupted in most cases
* Release 0.10.3
* Various minor fixes to task_interrupt and comments
* Release 0.10.2
* Add the experimental task_throw and task_interrupt methods
* Release 0.10.1
* Add the `aiter_sync()` function
* Release 0.10.0
* Rename `coro_sync` to `await_sync`
* Add Monitor start() and try_await() methods
* Add support for PyPy
* Drop support for EOL Python 3.7
* Rename MonitorAwaitable to BoundMonitor, add convenience
BoundMonitor is returned by calling Monitor with coroutine.
* add `aclose()` to Monitor and MonitorAwaitable
* Release 0.9.2
* rename `ensure_corofunc` to `asyncfunction`, add `syncfunction`
* Release 0.9.1
* Add `ensure_corofunc`
* Release 0.9.0
* Add `coro_sync`
* Add `CoroStart.aclose()` and related
* Release 0.8.0
* Refactor, support scheduling functions for vanilla asyncio loop
* Release 0.7.0
* Add `CoroStart.as_awaitable()` method
* Add `Monitor.awaitable()` method and `MonitorAwaitable` class
* Add the coro_iter() helper
* Release 0.6.0
* Move Task creation out of the `CoroStart` class and into `coro_eager()` helper.
* Add Monitor class and GeneratorObject
* Add anyio support for testing. Add asykit.experimental.anyio.
* Release 0.5.0
* make CoroStart() _awaitable_. Simplify and make more robust. remove auto_start.
* Add support for context variables in CoroStart()