[Python-checkins] python/dist/src/Misc NEWS,1.568,1.569

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 25 Dec 2002 08:37:21 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv24875/Misc

Modified Files:
	NEWS 
Log Message:
SF 658405:  calendar.py to rely on the datetime module instead of the time
module.

The code is shorter, more readable, faster, and dramatically increases the
range of acceptable dates.

Also, used the floor division operator in leapdays().


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.568
retrieving revision 1.569
diff -C2 -d -r1.568 -r1.569
*** NEWS	23 Dec 2002 16:51:41 -0000	1.568
--- NEWS	25 Dec 2002 16:37:18 -0000	1.569
***************
*** 444,447 ****
--- 444,451 ----
  -------
  
+ - calendar.py now depends on the new datetime module rather than
+   the time module.  As a result, the range of allowable dates
+   has been increased.
+ 
  - pdb has a new 'j(ump)' command to select the next line to be
    executed.