Browse Source

Closure

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

6
README.md

@ -558,9 +558,9 @@ class <name>:
### Copy
```python
import copy
<object> = copy.copy(<object>)
<object> = copy.deepcopy(<object>)
from copy import copy, deepcopy
<object> = copy(<object>)
<object> = deepcopy(<object>)
```

Loading…
Cancel
Save