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

scipy-svn at scipy.org scipy-svn at scipy.org
Wed Feb 28 16:25:21 EST 2007


Author: mattknox_ca
Date: 2007-02-28 15:25:16 -0600 (Wed, 28 Feb 2007)
New Revision: 2789

Modified:
   trunk/Lib/sandbox/timeseries/parser.py
Log:
fixed encoding specification problem

Modified: trunk/Lib/sandbox/timeseries/parser.py
===================================================================
--- trunk/Lib/sandbox/timeseries/parser.py	2007-02-28 21:21:11 UTC (rev 2788)
+++ trunk/Lib/sandbox/timeseries/parser.py	2007-02-28 21:25:16 UTC (rev 2789)
@@ -1,3 +1,4 @@
+#-*- coding: latin-1 -*-
 """ Date/Time string parsing module.
 
 This code is a slightly modified version of Parser.py found in mx.DateTime
@@ -9,6 +10,10 @@
 import datetime as dt
 from string import atoi, atof, lower, upper
 
+__all__ = [
+'DateFromString', 'DateTimeFromString'
+           ]
+
 # Enable to produce debugging output
 _debug = 0
 




More information about the Scipy-svn mailing list