Re: problem with input filter and POST data (fileupload)
Graham Dumpleton <[email protected]>
| Newsgroups | gmane.comp.python.mod_python |
|---|---|
| Message-ID | <[email protected]> |
Bouncing replay back to list. 2009/2/15 Joerg <[email protected]>: >> Behaviour explained through failing to check for 'None' on data read >> by input filter before closing it. >> >> from mod_python import apache >> >> def outputfilter(filter): >> >> s = filter.read() >> while s: >> filter.write(s.upper()) >> s = filter.read() >> >> if s is None: >> filter.close() >> >> In other words, forget the 'if s is None' and you will see that occur >> as input filter has been prematurely closed. >> >> Graham > > sorry graham, it doesnt work with the "if s is None" either. > > Joerg > >