From 7d9e841ff03a1b007f9a64114158623cf01667eb Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Tue, 21 Sep 2004 01:24:32 +0000 Subject: [PATCH] Update svn: r3564 --- src/Date.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Date.py b/src/Date.py index c8fb9119a..03261e321 100644 --- a/src/Date.py +++ b/src/Date.py @@ -454,9 +454,9 @@ class Date: """ Returns True if the date is a regular date. - The regular date is a single exact, i.e. not text-only, not a range - or a span, not estimated/calculated, not about/before/after date, - and having year, month, and day other than zero. + The regular date is a single exact date, i.e. not text-only, not + a range or a span, not estimated/calculated, not about/before/after + date, and having year, month, and day all non-zero. """ return self.modifier == MOD_NONE and self.quality == QUAL_NONE\ and self.get_year_valid() and self.get_month_valid\