> def order_matching_files(a_path, a_glob="*"):
>     """Search a path for files whose names match a_glob
>     and return a list of the full path to such files, in descending
>     order of modification time. Ignore directories."""
>     previous_dir = os.getcwd()
>     os.chdir(a_path)
>     return_list = [os.path.join(a_path, x) for x in glob.glob(a_glob) if
> os.path.isfile(x)]
>     os.chdir(previous_dir)
>     return reversed(sorted(return_list, key=os.path.getmtime))
>

Oops, guess I'm not really returning a list, I'm returning an iterator.  I
should change either the comment or the return value.
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to