Open
Description
It used to be that DateOffset was the base class and all other offsets subclassed it. Now BaseOffset is the base class that everything subclasses, RelativeDeltaOffset holds the old-DateOffset logic, and DateOffset is a thin wrapper around RelativeDeltaOffset to make old isinstance(obj, DateOffset)
checks work.
It'd be nice if we could expose RelativeDeltaOffset without wrapping it as DateOffset.