summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-05-17 05:55:19 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-05-17 05:55:19 (GMT)
commita98924a063b6c8f94f7a03c78bd83e6131954381 (patch)
treef5aa342bfaca35a37e6915b2a9f413e20e371990 /Misc/NEWS
parent63af08aa93f49e36bba19d452b63575487161604 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6e8cae6..e182845 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.