summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-10-16 00:46:57 (GMT)
committerGuido van Rossum <guido@python.org>2001-10-16 00:46:57 (GMT)
commit3eea25c3fa3c004b1128e555f36263cda9ff71f0 (patch)
tree485828dc2569819400ca2daf312d64d96a975879 /Misc/NEWS
parenta7e1f43bd9c5940741d632bcfa8cf2e99b0205cd (diff)
downloadcpython-3eea25c3fa3c004b1128e555f36263cda9ff71f0.zip
cpython-3eea25c3fa3c004b1128e555f36263cda9ff71f0.tar.gz
cpython-3eea25c3fa3c004b1128e555f36263cda9ff71f0.tar.bz2
Reword the text on the demise of __dynamic__ somewhat, correcting a
typo.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS9
1 files changed, 5 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1e95283..0a75c71 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -5,13 +5,14 @@ Release date: 28-Sep-2100
Type/class unification and new-style classes
- New-style classes are now always dynamic (except for built-in and
- extension types). There was no longer a performance penalty, and I
+ extension types). There is no longer a performance penalty, and I
no longer see another reason to keep this baggage around. One relic
- remains: the __dict__ or a new-style class is a read-only proxy.
- You must set the class's attribute to modify. As a consequence, the
+ remains: the __dict__ of a new-style class is a read-only proxy; you
+ must set the class's attribute to modify it. As a consequence, the
__defined__ attribute of new-style types no longer exists, for lack
of need: there is once again only one __dict__ (although in the
- future a __cache__ may be resurrected in its place).
+ future a __cache__ may be resurrected with a similar function, if I
+ can prove that it actually speeds things up).
- C.__doc__ now works as expected for new-style classes (in 2.2a4 it
always returned None, even when there was a class docstring).