diff options
author | Guido van Rossum <guido@python.org> | 2002-06-21 01:29:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-06-21 01:29:25 (GMT) |
commit | c7c36503ebc1c9fc166ca3c27dd8d7ee8b8eb5ed (patch) | |
tree | b58c2339547c148a3eb2c1577261d1c78607be19 /Misc/NEWS | |
parent | 8b47dffc932fe1452a7f5fae70307c0915cd3591 (diff) | |
download | cpython-c7c36503ebc1c9fc166ca3c27dd8d7ee8b8eb5ed.zip cpython-c7c36503ebc1c9fc166ca3c27dd8d7ee8b8eb5ed.tar.gz cpython-c7c36503ebc1c9fc166ca3c27dd8d7ee8b8eb5ed.tar.bz2 |
Mention private vars in __slots__.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -6,6 +6,9 @@ Type/class unification and new-style classes Core and builtins +- The __slots__ variable can now mention "private" names, and the + right thing will happen (e.g. __slots__ = ["__foo"]). + - Unicode objects in sys.path are no longer ignored but treated as directory names. |