Files
Pascal Obry 45f098d92f Add support for upload progress.
When uploading a file to a server it is possible to use a callback
which reports the upload progress.

Add corresponding regression test and feature entry.

For L814-008.
2012-09-18 18:00:45 +02:00

9 lines
192 B
Python

from test_support import *
f=open('file.txt', 'w')
for k in range(1,1000):
f.write("azerty azerty azerty azerty azerty azerty azerty azerty")
f.close()
build_and_run('upload_progress');