Browse Source

Tabulate

pull/3/head
Jure Šorn 5 years ago
parent
commit
9a3b8dc143
1 changed files with 3 additions and 5 deletions
  1. 8
      README.md

8
README.md

@ -851,11 +851,9 @@ Coroutine
* **If you built a collection of simple data processing components, you can glue them together into complex arrangements of pipes, branches, merging, etc.**
### Helper Decorator
**• All coroutines must be "primed" by first calling .next()**
**• Remembering to call .next() is easy to forget.**
**• Solved by wrapping coroutines with a decorator:**
* **All coroutines must be "primed" by first calling .next()**
* **Remembering to call .next() is easy to forget.**
* **Solved by wrapping coroutines with a decorator:**
```python
def coroutine(func):

Loading…
Cancel
Save