Ethan Furman added the comment:

Switching the order to try getattr first is going to make getting the doc from 
the descriptor problematic -- we have no way of knowing if the descriptor doc 
goes with the object we got back from getattr.

Current patch adds VirtualAttribute to types, and reworks 
inspect.classify_class_attrs, inspect.getmembers, and Enum to use that instead 
of _RouteClassAttributeToGetattr (which has been removed).

Tests are still needed for the new VirtualAttribute.

Not sure VirtualAttribute is the best name; other ideas:

  - InstanceProperty
  - AttributeProperty
  - HiddenClassProperty

----------
stage:  -> patch review
Added file: http://bugs.python.org/file31797/issue19030.stoneleaf.02.patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue19030>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to