On Oct 11, 2006, at 3:17 PM, askel wrote:

>
> def download(self):
>   ...
>   r = Request(mimetype='application/octet-stream')
>   f = open(filename)
>   r.content = add_close(f, lambda: f.close())
>   return r
>

You don't want add_close here; WSGI servers must call close on the  
iterable if it exists. Using it will call f.close twice.

--
Philip Jenvey


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss
-~----------~----~----~----~------~----~------~--~---

Reply via email to