[Python-checkins] r80292 - python/branches/release31-maint

mark.dickinson python-checkins at python.org
Wed Apr 21 01:01:53 CEST 2010


Author: mark.dickinson
Date: Wed Apr 21 01:01:53 2010
New Revision: 80292

Log:
Blocked revisions 80290-80291 via svnmerge

........
  r80290 | mark.dickinson | 2010-04-20 23:32:49 +0100 (Tue, 20 Apr 2010) | 12 lines
  
  Issue #2706:  Add support for dividing a timedelta by another timedelta.
  
  Adds support for the three division operations:
  
    - timedelta / timedelta -> float
    - timedelta // timedelta -> int
    - timedelta % timedelta -> timedelta
  
  also adds support for divmod(timedelta, timedelta).
  
  Patch by Alexander Belopolsky.
........
  r80291 | mark.dickinson | 2010-04-20 23:39:53 +0100 (Tue, 20 Apr 2010) | 1 line
  
  Fix memory leak.
........


Modified:
   python/branches/release31-maint/   (props changed)


More information about the Python-checkins mailing list