summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-10-26 14:56:06 (GMT)
committerGuido van Rossum <guido@python.org>2001-10-26 14:56:06 (GMT)
commit12d955c83058db19e0c82274b54230d72bfbebc5 (patch)
treef5c245299609b2a465f60191dbb3dfd671a94e44
parent79bcc17cd90df9b19878202946ac6143e6c0498d (diff)
downloadcpython-12d955c83058db19e0c82274b54230d72bfbebc5.zip
cpython-12d955c83058db19e0c82274b54230d72bfbebc5.tar.gz
cpython-12d955c83058db19e0c82274b54230d72bfbebc5.tar.bz2
Some news.
-rw-r--r--Misc/NEWS14
1 files changed, 13 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e55b9de..21ff1b9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -4,6 +4,10 @@ XXX Planned XXX Release date: 14-Nov-2001
Type/class unification and new-style classes
+- Assignment to object.__dict__ is now possible, for objects that are
+ instances of new-style classes that have a __dict__ (unless the base
+ class forbids it).
+
- dictionary() now accepts an iterable object producing 2-sequences.
For example, dictionary(d.items()) == d for any dictionary d. The
argument, and the elements of the argument, can be any iterable
@@ -15,9 +19,17 @@ Type/class unification and new-style classes
Core and builtins
+- Clarified the error messages for unsupported operands to an operator
+ (like 1 + '').
+
Extension modules
-- Various bugfixes to the curses module.
+- The socket module defines a new method for socket objects,
+ sendall(). This is like send() but may make multiple calls to
+ send() until all data has been sent.
+
+- Various bugfixes to the curses module. There is now a test suite
+ for the curses module (you have to run it manually).
Library