2010-06-03T18:13:00-04:00
I encountered a very aggravating problem in which it looked like
Python's fcntl.flock was simply not working, for an
unknown reason. I finally figured it out, and this is what I
learned.
2010-04-12T16:02:00-04:00
In some situations, it may make sense to try to significantly reduce
the number of duplicates in a collection, while ensuring that memory usage
does not increase without bound. To help with this, I created a Python
utility called a RecentSet, which serves as a sort
of first-pass filter for significantly reducing the number of duplicates
in a collection.
2005-11-02T00:00:00Z
This article describes an alternative to Python's built-in
property function which allows the user to
override, in derived classes, the methods used by this function.