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
deep copies of Series with timezone-aware datetimes are shallow in 0.17.1:
In [12]: import pandas as pd In [13]: pd.__version__ Out[13]: u'0.17.1' In [14]: ser = pd.Series([pd.Timestamp('2012/01/01', tz='UTC')]) In [15]: ser2 = ser.copy(deep=True) In [18]: ser2[0] = pd.Timestamp('1999/01/01', tz='UTC') # unexpected mutation In [19]: ser Out[19]: 0 1999-01-01 00:00:00+00:00 dtype: datetime64[ns, UTC]
The text was updated successfully, but these errors were encountered:
BUG: bug in .copy of datetime tz-aware objects, pandas-dev#11794
2bf9fb5
Not always deep-copying the underlying impl, which is a DatetimeIndex where shallow copies are views
Merge pull request #11796 from jreback/tzcopy
cbf7043
BUG: bug in deep copy of datetime tz-aware objects, #11794
BUG: Avoid cancellations in nanskew/nankurt.
419e9a2
Closes #11794 Closes #12121
Successfully merging a pull request may close this issue.
deep copies of Series with timezone-aware datetimes are shallow in 0.17.1:
The text was updated successfully, but these errors were encountered: