diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-05-17 05:55:19 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-05-17 05:55:19 (GMT) |
commit | a98924a063b6c8f94f7a03c78bd83e6131954381 (patch) | |
tree | f5aa342bfaca35a37e6915b2a9f413e20e371990 /Misc/NEWS | |
parent | 63af08aa93f49e36bba19d452b63575487161604 (diff) | |
download | cpython-a98924a063b6c8f94f7a03c78bd83e6131954381.zip cpython-a98924a063b6c8f94f7a03c78bd83e6131954381.tar.gz cpython-a98924a063b6c8f94f7a03c78bd83e6131954381.tar.bz2 |
datetime.datetime and datetime.time can now be subclassed in Python. Brr.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -26,6 +26,9 @@ Core and builtins Extension modules ----------------- +- The datetime.datetime and datetime.time classes are now properly + subclassable. + - _tkinter.{get|set}busywaitinterval was added. - itertools.islice() now accepts stop=None as documented. |