(original) (raw)
changeset: 85816:96081e7526f0 user: Ethan Furman ethan@stoneleaf.us date: Fri Sep 27 23:02:02 2013 -0700 files: Lib/enum.py description: Issue19030: fixed comment that was still referring to a changed descriptor. diff -r 47fb6b078b5f -r 96081e7526f0 Lib/enum.py --- a/Lib/enum.py Fri Sep 27 22:58:06 2013 -0700 +++ b/Lib/enum.py Fri Sep 27 23:02:02 2013 -0700 @@ -471,8 +471,8 @@ def __hash__(self): return hash(self._name_) - # _RouteClassAttributeToGetattr is used to provide access to the `name` - # and `value` properties of enum members while keeping some measure of + # DynamicClassAttribute is used to provide access to the `name` and + # `value` properties of enum members while keeping some measure of # protection from modification, while still allowing for an enumeration # to have members named `name` and `value`. This works because enumeration # members are not set directly on the enum class -- __getattr__ is /ethan@stoneleaf.us