# HG changeset patch # User Paul Boddie # Date 1301789239 -7200 # Node ID 652db398c50581429f26b612f4adff1a4f6734e7 # Parent 5704afcbc54af705cfb7705838f018f8fadabc98 Removed the redundant step_to method aliases. diff -r 5704afcbc54a -r 652db398c505 EventAggregatorSupport.py --- a/EventAggregatorSupport.py Sun Apr 03 02:06:01 2011 +0200 +++ b/EventAggregatorSupport.py Sun Apr 03 02:07:19 2011 +0200 @@ -1171,8 +1171,6 @@ return self.until(self.as_month(), end.as_month(), Month.next_month, Month.previous_month) - step_to = months_until - class Date(Month): "A simple year-month-day representation." @@ -1247,8 +1245,6 @@ return self.until(self.as_date(), end.as_date(), Date.next_day, Date.previous_day) - step_to = days_until - class DateTime(Date): "A simple date plus time representation."