uggh no!

On Thu, Dec 4, 2008 at 11:07 AM, Lawrence D'Oliveiro
<[EMAIL PROTECTED]> wrote:
> for \
>        Entry \
>    in \
>        sorted \
>          (
>            f for f in os.listdir(PatchesDir) if PatchDatePat.search(f) != None
>          ) \
> :
>    Patch = (open, 
> gzip.GzipFile)[Entry.endswith(".gz")](os.path.join(PatchesDir, Entry), "r")
>    ... read from Patch ...
>    Patch.close()
> #end for
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>



-- 
--
-- "Problems are solved by method"
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to