This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Truncated POST data in CGI script on Windows 7
Type: behavior Stage:
Components: Library (Lib), Windows Versions: Python 3.4, Python 3.5, Python 2.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Alexander.Martin, Eyal.Gruss, tim.golden
Priority: normal Keywords:

Created on 2012-09-27 21:50 by Alexander.Martin, last changed 2022-04-11 14:57 by admin.

Files
File name Uploaded Description Edit
Truncated_POST_data_in_CGI_script_on_Win7.zip Alexander.Martin, 2012-09-27 21:50 server script, HTML file and Python script for error reproduction
Messages (4)
msg171394 - (view) Author: Alexander Martin (Alexander.Martin) Date: 2012-09-27 21:50
POST data is truncated randomly when sent to a python script running on a simple python CGI server on Windows 7 with Python 3.2.3.

The same server and script files run successfully on MAC OSX 10.8 with Python 3.2.3. A similar server (adapted for lower Python version) and the same script file do work fine on Windows 7 with Python 2.7.2. 

Steps to reproduce: Attached zip contains server script, HTML file and Python script, that receives an uploaded file and saves it to disk. Upload an image file and submit the form inside the HTML file to Python script. Repeat form submission multiple times. In more than 50% of test cases, the uploaded file will not be completely available inside the Python script. That means size of the same uploaded file varies with each POST request. Additionally, the Python server will reset the HTTP connection sometimes.
msg171417 - (view) Author: Alexander Martin (Alexander.Martin) Date: 2012-09-28 08:42
The successful script execution was run under Python 2.7.3 (as of today one of the two as "production version" labeled releases). The initial report's reference to Python 2.7.2 was made by mistake.

May anyone confirm this error behaviour on Python production version 3.2.3 on Windows?
msg224271 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-07-29 23:09
@Alexander apologies for the delay in getting back to you.  Who is best placed to look at this issue, I'll admit to knowing squat about cgi?
msg228365 - (view) Author: Eyal Gruss (Eyal.Gruss) Date: 2014-10-03 19:21
i can confirm on win 7 and python 3.4.1
History
Date User Action Args
2022-04-11 14:57:36adminsetgithub: 60270
2019-04-26 18:07:20BreamoreBoysetnosy: - BreamoreBoy
2014-10-03 19:21:50Eyal.Grusssetnosy: + Eyal.Gruss
messages: + msg228365
2014-07-29 23:12:29brian.curtinsetnosy: - brian.curtin
2014-07-29 23:09:54BreamoreBoysetversions: + Python 2.7, Python 3.4, Python 3.5, - Python 3.2
nosy: + BreamoreBoy

messages: + msg224271

components: + Library (Lib)
2012-09-28 08:42:53Alexander.Martinsetmessages: + msg171417
2012-09-27 21:50:47Alexander.Martincreate