summaryrefslogtreecommitdiffstats
path: root/Lib/abc.py
Commit message (Collapse)AuthorAgeFilesLines
* Rename __whatever variables defined by ABCMeta to _abc_whatever, so asGuido van Rossum2007-08-201-21/+21
| | | | to simplify legitimate use of these.
* Fix _dump_registry() to use the correct prefix for the privateGuido van Rossum2007-08-181-2/+2
| | | | | | methods. Reset the negative cache *before* resetting the invalidation counter, hoping this may plug a race condition (but then again, this whole module isn't coded to be thread-safe).
* Tests for @abstractproperty by Jeffrey Yasskin.Guido van Rossum2007-08-011-0/+2
| | | | | | (The previous changes to abc.py were also by him). Put back a comment about using super() for properties (I didn't realize this worked).
* Add @abstractproperty.Guido van Rossum2007-08-011-0/+25
|
* Modernize the super() call in ABCMeta.__new__() -- I had messed withGuido van Rossum2007-06-141-1/+1
| | | | | it when I thought something was broken, and forgotten to restore it before checking in (maybe I did a svn revert which had the wrong effect?).
* Somehow this needed adding.Guido van Rossum2007-06-141-0/+179