Browse Source

Callable

pull/27/head
Jure Šorn 5 years ago
parent
commit
1523c6e3bb
1 changed files with 6 additions and 0 deletions
  1. 6
      README.md

6
README.md

@ -758,6 +758,12 @@ class Counter:
return self.a
```
```python
>>> c = Counter()
>>> c(), c(), c()
(1, 2, 3)
```
### Withable
```python
class FileReader():

Loading…
Cancel
Save