str != "" returns true if str is NOT the empty string.
str is not None returns true if str is null (or None as it's called in python). To check to make sure a string is nonnull and nonempty, do: str is not None and str != "" -- http://mail.python.org/mailman/listinfo/python-list