Message286020
The original problem here was retrieving files failed (hung) when it was tried via context-manager
1. For e.g after "reverting" the changes, if you use the original file without the context manager, it will succeed.
fobj = urllib.request.urlopen( url )
That indicates the fix in changing something in endtransfer method was improper. I have given more information here: http://bugs.python.org/issue27973#msg286016
The proper fix will be revert the endtransfer changes, but fix it in contextmanager scenario. Add test cases to cover all these scenarios. |
|
| Date |
User |
Action |
Args |
| 2017-01-22 17:46:13 | orsenthil | set | recipients:
+ orsenthil, giampaolo.rodola, r.david.murray, daniel.ugra, python-dev |
| 2017-01-22 17:46:13 | orsenthil | set | messageid: <[email protected]> |
| 2017-01-22 17:46:13 | orsenthil | link | issue16270 messages |
| 2017-01-22 17:46:13 | orsenthil | create | |
|