pandas.api.extensions.register_extension_dtype
- 
pandas.api.extensions.register_extension_dtype(cls)[source]
- 
Class decorator to register an ExtensionType with pandas. New in version 0.24.0. This enables operations like .astype(name)for the name of the ExtensionDtype.Examples>>> from pandas.api.extensions import register_extension_dtype >>> from pandas.api.extensions import ExtensionDtype >>> @register_extension_dtype ... class MyExtensionDtype(ExtensionDtype): ... pass 
    © 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
    https://pandas.pydata.org/pandas-docs/version/0.24.2/reference/api/pandas.api.extensions.register_extension_dtype.html