[Scipy-svn] r2851 - trunk/Lib/sandbox/timeseries

scipy-svn at scipy.org scipy-svn at scipy.org
Tue Mar 20 10:42:23 EDT 2007


Author: mattknox_ca
Date: 2007-03-20 09:42:18 -0500 (Tue, 20 Mar 2007)
New Revision: 2851

Added:
   trunk/Lib/sandbox/timeseries/const.py
Log:
separate name space for frequency constants

Added: trunk/Lib/sandbox/timeseries/const.py
===================================================================
--- trunk/Lib/sandbox/timeseries/const.py	2007-03-19 23:50:21 UTC (rev 2850)
+++ trunk/Lib/sandbox/timeseries/const.py	2007-03-20 14:42:18 UTC (rev 2851)
@@ -0,0 +1,21 @@
+"""
+A collection of tools for timeseries
+
+:author: Pierre GF Gerard-Marchant & Matt Knox
+:contact: pierregm_at_uga_dot_edu - mattknox_ca_at_hotmail_dot_com
+:version: $Id: tcore.py 2836 2007-03-07 16:58:14Z mattknox_ca $
+"""
+__author__ = "Pierre GF Gerard-Marchant & Matt Knox ($Author: mattknox_ca $)"
+__version__ = '1.0'
+__revision__ = "$Revision: 2836 $"
+__date__     = '$Date: 2007-03-07 11:58:14 -0500 (Wed, 07 Mar 2007) $'
+
+from cseries import freq_constants
+
+"""add constants in cseries.freq_constants dictionary to global namespace
+for this module"""
+
+__all__ = [list(freq_constants)]
+
+_g = globals()
+_g.update(freq_constants)




More information about the Scipy-svn mailing list