Mention private vars in __slots__.

This commit is contained in:
Guido van Rossum 2002-06-21 01:29:25 +00:00
parent 8b47dffc93
commit c7c36503eb
1 changed files with 3 additions and 0 deletions

View File

@ -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.