summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2002-12-25 16:37:19 (GMT)
committerRaymond Hettinger <python@rcn.com>2002-12-25 16:37:19 (GMT)
commite11b510a5b35378572aca75dae7e9174756da5da (patch)
tree56503c8fcfc28cb5a9c4beb7ee6cb6abce16c0a7 /Misc/NEWS
parent80475bb4d21d1e5ddbb9eb0042adb1113052b38a (diff)
downloadcpython-e11b510a5b35378572aca75dae7e9174756da5da.zip
cpython-e11b510a5b35378572aca75dae7e9174756da5da.tar.gz
cpython-e11b510a5b35378572aca75dae7e9174756da5da.tar.bz2
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().
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5cc62bf..a9e3803 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -443,6 +443,10 @@ Extension modules
Library
-------
+- 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.