Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Thomas Wouters pointed out that _Abstract.__new__ should use super().__new__() | Guido van Rossum | 2007-09-11 | 1 | -3/+1 |
| | | | | instead of going straight to object.__new__(). | ||||
* | Rename __whatever variables defined by ABCMeta to _abc_whatever, so as | Guido van Rossum | 2007-08-20 | 1 | -21/+21 |
| | | | | to simplify legitimate use of these. | ||||
* | Fix _dump_registry() to use the correct prefix for the private | Guido van Rossum | 2007-08-18 | 1 | -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 Rossum | 2007-08-01 | 1 | -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 Rossum | 2007-08-01 | 1 | -0/+25 |
| | |||||
* | Modernize the super() call in ABCMeta.__new__() -- I had messed with | Guido van Rossum | 2007-06-14 | 1 | -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 Rossum | 2007-06-14 | 1 | -0/+179 |