Defer PEP 447 (#951)
This commit is contained in:
parent
30886daeb6
commit
ec46f7eeb4
|
@ -3,7 +3,7 @@ Title: Add __getdescriptor__ method to metaclass
|
||||||
Version: $Revision$
|
Version: $Revision$
|
||||||
Last-Modified: $Date$
|
Last-Modified: $Date$
|
||||||
Author: Ronald Oussoren <ronaldoussoren@mac.com>
|
Author: Ronald Oussoren <ronaldoussoren@mac.com>
|
||||||
Status: Draft
|
Status: Deferred
|
||||||
Type: Standards Track
|
Type: Standards Track
|
||||||
Content-Type: text/x-rst
|
Content-Type: text/x-rst
|
||||||
Created: 12-Jun-2013
|
Created: 12-Jun-2013
|
||||||
|
@ -49,6 +49,13 @@ dictionary::
|
||||||
return cls.__dict__[name]
|
return cls.__dict__[name]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
raise AttributeError(name) from None
|
raise AttributeError(name) from None
|
||||||
|
|
||||||
|
|
||||||
|
PEP Status
|
||||||
|
==========
|
||||||
|
|
||||||
|
This PEP is deferred until someone has time to update this PEP and push it forward.
|
||||||
|
|
||||||
|
|
||||||
Rationale
|
Rationale
|
||||||
=========
|
=========
|
||||||
|
|
Loading…
Reference in New Issue