This post originated from an RSS feed registered with Python Buzz
by Ian Bicking.
Original Post: Decorators and Descriptors
Feed Title: Ian Bicking
Feed URL: http://www.ianbicking.org/feeds/atom.xml
Feed Description: Thoughts on Python and Programming.
So, decorators are neat (maybe check out a new tutorial on them). Descriptors are neat but may seem hard (though they hardly take a long time to describe). Sometimes these two things intersect, and this post describes how.
Here’s an example decorator where this comes up. First, we want something that looks like [...]