summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3ab5200)
raw | patch | inline | side by side (parent: 3ab5200)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sat, 22 Mar 2003 22:43:21 +0000 (22:43 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sat, 22 Mar 2003 22:43:21 +0000 (22:43 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1614 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/date.py | patch | blob | history | |
test/test_db.py | patch | blob | history |
diff --git a/roundup/date.py b/roundup/date.py
index 165a883ed2aebe4f4c428e6acbf389bf62464e76..a6430d7504b37bf75ba2d06efec49a29fe343cef 100644 (file)
--- a/roundup/date.py
+++ b/roundup/date.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: date.py,v 1.50 2003-03-19 05:18:10 richard Exp $
+# $Id: date.py,v 1.51 2003-03-22 22:43:21 richard Exp $
__doc__ = """
Date, time and time interval handling.
if not m:
raise ValueError, _('Not an interval spec: [+-] [#y] [#m] [#w] '
'[#d] [[[H]H:MM]:SS] [date spec]')
+ else:
+ allowdate = 0
# pull out all the info specified
info = m.groupdict()
diff --git a/test/test_db.py b/test/test_db.py
index 7d610b5320cf2772d8448ad8fe079d27c4ccf7d2..742e65bb0868e541bbdc0d05eab13d720cd80d5f 100644 (file)
--- a/test/test_db.py
+++ b/test/test_db.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: test_db.py,v 1.80 2003-03-18 23:28:16 richard Exp $
+# $Id: test_db.py,v 1.81 2003-03-22 22:43:21 richard Exp $
import unittest, os, shutil, time
unittest.makeSuite(anydbmReadOnlyDBTestCase, 'test')
]
p.append('anydbm')
- #return unittest.TestSuite(l)
+# return unittest.TestSuite(l)
from roundup import backends
if hasattr(backends, 'mysql'):