We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d789a92 commit b06d454Copy full SHA for b06d454
README.md
@@ -590,7 +590,7 @@ def get_multiplier(a):
590
* **If multiple nested functions within enclosing function reference the same value, that value gets shared.**
591
* **To dynamically access function's first free variable use `'<function>.__closure__[0].cell_contents'`.**
592
593
-#### Or:
+### Partial
594
```python
595
from functools import partial
596
<function> = partial(<function>, <argument_1> [, <argument_2>, ...])
@@ -1072,7 +1072,7 @@ import json
1072
<object> = json.loads(<str>)
1073
```
1074
1075
-#### To preserve order:
+#### To preserve order use:
1076
1077
from collections import OrderedDict
1078
<object> = json.loads(<str>, object_pairs_hook=OrderedDict)
0 commit comments