diff options
author | Michael W. Hudson <mwh@python.net> | 2002-11-26 14:48:23 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2002-11-26 14:48:23 (GMT) |
commit | 96bc3b4d741091d66e390705ae99df2f06fde606 (patch) | |
tree | c95a4ae30e7119b7710dd54d089ed0b38ea8c468 /Misc/NEWS | |
parent | 98bbc49c54c4bc7de33f1f23fc364dbb8e3fe034 (diff) | |
download | cpython-96bc3b4d741091d66e390705ae99df2f06fde606.zip cpython-96bc3b4d741091d66e390705ae99df2f06fde606.tar.gz cpython-96bc3b4d741091d66e390705ae99df2f06fde606.tar.bz2 |
This is not part of my patch
[ 635933 ] make some type attrs writable
but should have been!
News about the above.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -12,6 +12,8 @@ What's New in Python 2.3 alpha 1? Type/class unification and new-style classes -------------------------------------------- +- One can now assign to __bases__ and __name__ of new-style classes. + - dict() now accepts keyword arguments so that dict(one=1, two=2) is the equivalent of {"one": 1, "two": 2}. Accordingly, the existing (but undocumented) 'items' keyword argument has |