diff options
author | Raymond Hettinger <python@rcn.com> | 2002-12-25 16:37:19 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-12-25 16:37:19 (GMT) |
commit | e11b510a5b35378572aca75dae7e9174756da5da (patch) | |
tree | 56503c8fcfc28cb5a9c4beb7ee6cb6abce16c0a7 /Misc/NEWS | |
parent | 80475bb4d21d1e5ddbb9eb0042adb1113052b38a (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |