Browse Source

Enum

pull/3/head
Jure Šorn 5 years ago
parent
commit
3a4a0c33e2
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -519,8 +519,8 @@ LogicOp = Enum('LogicOp', {'AND': (lambda l, r: l and r, ),
### Copy
```python
import copy
copy.copy(<object>)
copy.deepcopy(<object>)
<object> = copy.copy(<object>)
<object> = copy.deepcopy(<object>)
```

Loading…
Cancel
Save