summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-10-04 06:43:12 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-10-04 06:43:12 (GMT)
commit1c9ca8726ec138af890643100859d3bc65d4e365 (patch)
tree257f221520d9448ff9c4a57f6e2bf0a951d24bbb /Misc
parentc59fb2d2300d0d06f25ebdfc34d59ee07fcb0a15 (diff)
downloadcpython-1c9ca8726ec138af890643100859d3bc65d4e365.zip
cpython-1c9ca8726ec138af890643100859d3bc65d4e365.tar.gz
cpython-1c9ca8726ec138af890643100859d3bc65d4e365.tar.bz2
Added a little type/class NEWS.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9ead40c..6e8f9fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4,6 +4,12 @@ Release date: 28-Sep-2100
Type/class unification and new-style classes
+- C.__doc__ now works as expected for new-style classes (in 2.2a4 it
+ always returned None, even when there was a class docstring).
+
+- doctest now finds and runs docstrings attached to new-style classes,
+ class methods, static methods, and properties.
+
Core
- binascii has now two quopri support functions, a2b_qp and b2a_qp.