They removed a lot of functionality that was deprecated in previous releases. It is recommended to first upgrade to pandas 0.25 and to ensure your code is working without warnings, before upgrading to pandas 1.0.
The ..
and ...
have different meanings in the context of git diff
and git log
.
For example, git log A..B
means something different compared to git log A...B
Also, the double and triple dots have to be reversed between git log
and git diff
to get the same effect.
i.e. git diff A..B
would correspond to git log A...B
and vice versa.