Skip to content

Commit 5019ae3

Browse files
committed
Decorator
1 parent 1be6408 commit 5019ae3

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -635,13 +635,6 @@ def fib(n):
635635
return n if n < 2 else fib(n-1) + fib(n-2)
636636
```
637637

638-
```python
639-
>>> [fib(n) for n in range(10)]
640-
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34]
641-
>>> fib.cache_info()
642-
CacheInfo(hits=16, misses=10, maxsize=None, currsize=10)
643-
```
644-
645638
### Parametrized Decorator
646639
```python
647640
from functools import wraps

0 commit comments

Comments
 (0)