Changes between and of Initial VersionVersion 2Ticket #5915
- Timestamp:
- 08/24/2012 01:02:17 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5915
- Property Cc jknight added
-
Ticket #5915 – Description
initial v2 1 1 I am simulating chunked encoding with the code below. Twisted web server can successfully chunked transfer the content, however, the last chunk (0 + CRLF) is not sent, at least from the tcpdump, I don't see it. 2 2 3 {{{ 4 #!python 3 5 f = open(DOC_ROOT + "/" + request.prepath[0] + "/" + request.prepath[1], 'rb') 4 6 while 1: … … 14 16 request.finish() 15 17 f.close() 18 }}}