[issue8077] cgi handling of POSTed files is broken in Windows

2021-04-26 Thread Senthil Kumaran
Change by Senthil Kumaran : -- pull_requests: +24343 stage: test needed -> patch review pull_request: https://github.com/python/cpython/pull/25652 ___ Python tracker ___ ___

[issue8077] cgi handling of POSTed files is broken in Windows

2021-04-26 Thread Senthil Kumaran
Change by Senthil Kumaran : -- title: cgi handling of POSTed files is broken -> cgi handling of POSTed files is broken in Windows versions: +Python 3.10 -Python 3.2, Python 3.3 ___ Python tracker

[issue8077] cgi handling of POSTed files is broken

2012-05-03 Thread Senthil Kumaran
Changes by Senthil Kumaran : -- assignee: -> orsenthil nosy: +orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue8077] cgi handling of POSTed files is broken

2012-05-03 Thread Pierre Quentel
Pierre Quentel added the comment: There are 2 different problems : - handling of data by cgi.FieldStorage (issue 4953) : fixed since version 3.2 - in http.server.CGIHTTPRequestHandler, for POST requests on Windows, before opening the subprocess in run_cgi() all data is read by a *single* call t

[issue8077] cgi handling of POSTed files is broken

2012-05-02 Thread Pierre Quentel
Changes by Pierre Quentel : -- nosy: +quentel ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python

[issue8077] cgi handling of POSTed files is broken

2012-02-24 Thread Ezio Melotti
Changes by Ezio Melotti : -- stage: -> test needed versions: +Python 3.3 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list maili

[issue8077] cgi handling of POSTed files is broken

2011-07-03 Thread STINNER Victor
Changes by STINNER Victor : -- nosy: +haypo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.o

[issue8077] cgi handling of POSTed files is broken

2010-09-15 Thread R. David Murray
Changes by R. David Murray : -- nosy: +r.david.murray title: urlparse -> cgi handling of POSTed files is broken ___ Python tracker ___

[issue8077] cgi handling of POSTed files is broken

2010-07-29 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue8077] cgi handling of POSTed files is broken

2010-06-16 Thread Guido van Rossum
Guido van Rossum added the comment: Could this be related to issue 4953? -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue8077] cgi handling of POSTed files is broken

2010-06-09 Thread Guido van Rossum
Guido van Rossum added the comment: The example works for me if I make this change: --- Lib/cgi.py (revision 81862) +++ Lib/cgi.py (working copy) @@ -608,7 +608,7 @@ parser = email.parser.FeedParser() # Create bogus content-type header for proper multipart parsing p

[issue8077] cgi handling of POSTed files is broken

2010-03-16 Thread Gabriel Genellina
Gabriel Genellina added the comment: This doesn't look like a documentation bug to me - handling of uploaded files via CGI *should* work, even if CGI is not the best way to do that. -- nosy: +gagenellina ___ Python tracker

[issue8077] cgi handling of POSTed files is broken

2010-03-05 Thread Mitchell Model
New submission from Mitchell Model : I am reluctant to post this because (a) I might have made some dumb mistake in my code, simple as it is, and (b) the problem might be well-known or even hopeless because the cgi module may not be WSGI compliant, but if this isn't going to be fixed then at l