Как проверить, является ли объект типа файла в Python3

# In python3, file objects are part of the io module.
>>> from io import IOBase
>>> f = open(<filePath>, 'w')
>>> isinstance(f, IOBase)
True
>>> isinstance(object(), IOBase)
False
Debug Engineer