We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A follow up issue from #30296 , where it was discussed that pd.datetime should also be deprecated to only allow imports directly from datetime
>>> import pandas as pd >>> pd.datetime <class 'datetime.datetime'>
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
Remove pandas.datetime (#60)
7bc1dcd
The pandas.datetime class is now deprecated. Import from datetime instead (GH30610). pandas-dev/pandas#30610
So, only places where I need to make change in my past codes is
add from datetime import datetime and
from datetime import datetime
replace pd.datetime with datetime ?
pd.datetime
datetime
ryankarlos
Successfully merging a pull request may close this issue.
A follow up issue from #30296 , where it was discussed that pd.datetime should also be deprecated to only allow imports directly from datetime
The text was updated successfully, but these errors were encountered: