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 4c3cb26 commit 00b3d80Copy full SHA for 00b3d80
README.md
@@ -1136,12 +1136,6 @@ import json
1136
<object> = json.loads(<str>)
1137
```
1138
1139
-#### To preserve order use:
1140
-```python
1141
-from collections import OrderedDict
1142
-<object> = json.loads(<str>, object_pairs_hook=OrderedDict)
1143
-```
1144
-
1145
### Read Object from JSON File
1146
```python
1147
def read_json_file(filename):
@@ -1762,8 +1756,8 @@ import numpy as np
1762
1756
1763
1757
1764
1758
1765
-<array> = <array>.sum(axis=None)
1766
-indexes = <array>.argmin(axis=None)
1759
+<array> = <array>.sum(axis)
1760
+indexes = <array>.argmin(axis)
1767
1761
1768
1769
* **Shape is a tuple of dimension sizes.**
0 commit comments