[Scipy-svn] r3024 - trunk/Lib/sandbox/timeseries
scipy-svn@scip...
scipy-svn@scip...
Mon May 21 13:35:57 CDT 2007
Author: pierregm
Date: 2007-05-21 13:35:53 -0500 (Mon, 21 May 2007)
New Revision: 3024
Modified:
trunk/Lib/sandbox/timeseries/tseries.py
Log:
tseries : forced a copy_attributes in _tsarraymethods (in order to save the attributes)
Modified: trunk/Lib/sandbox/timeseries/tseries.py
===================================================================
--- trunk/Lib/sandbox/timeseries/tseries.py 2007-05-21 14:15:05 UTC (rev 3023)
+++ trunk/Lib/sandbox/timeseries/tseries.py 2007-05-21 18:35:53 UTC (rev 3024)
@@ -268,6 +268,7 @@
result._dates = getattr(instance._dates, _name)(*args)
else:
result._dates = instance._dates
+ result.copy_attributes(instance)
return result
class _tsaxismethod(object):
More information about the Scipy-svn
mailing list