Resolve "DeprecationWarning: sorted_dict.iloc is deprecated. Use SortedDict.keys() instead."
Closes #92 (closed)
This might impact performance, since sorted_dict.keys()
might be O(N), but I am not 100 percent certain on this, but it sounds logical
Edited by Joseph Weston
Merge request reports
Activity
lookup in
sorted_dict.keys()
islog(N)
: http://www.grantjenks.com/docs/sortedcontainers/sorteddict.html#sortedcontainers.SortedKeysViewiloc
was just a cached reference to aSortedKeysView
, so the runtime is the same.added 9 commits
-
f4796aed...0dacb0e1 - 8 commits from branch
master
- 589ff9f0 - replace iloc with keys, this may impact performance
-
f4796aed...0dacb0e1 - 8 commits from branch
added 1 commit
- 2c632463 - replace 'SortedDict.iloc' with 'SortedDict.keys()'
added 7 commits
-
2c632463...6695ba17 - 6 commits from branch
master
- 93562ad3 - replace 'SortedDict.iloc' with 'SortedDict.keys()'
-
2c632463...6695ba17 - 6 commits from branch
mentioned in issue #106 (closed)
Please register or sign in to reply