@ehmatthes I enjoyed the latest Mostly Python email about checking for missing attributes. Something that crossed my mind reading the conclusion is that the intention is clearer, but it may be harder to find that usage now that the property is in a hasattr call. A person searching where an attribute is all used may search for `.attrname` which wouldn't be found. Removing the leading dot would avoid it, but sometimes a attribute name is a common word, so the dot increases the specificity.