You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**"Wraps" decorator copies metadata of function func() to function out(). Without it `add.__name__` would return `'out'`.**
611
+
**Prints functions name every time it gets called. Wraps is a helper decorator that copies metadata of function func() to function out(). Without it `'add.__name__'` would return `'out'`.**
612
612
613
613
```python
614
614
from functools import wraps
@@ -1730,6 +1730,7 @@ import numpy as np
1730
1730
1731
1731
#### Integer array indexing:
1732
1732
**If row and column indexes differ in shape, they are combined with broadcasting.**
0 commit comments