Home | History | Annotate | Download | only in python2.7

Lines Matching refs:chunked

358         self.chunked = _UNKNOWN         # is "chunked" being used?
436 self.chunked = 0
449 # are we using the chunked-style of transfer encoding?
451 if tr_enc and tr_enc.lower() == "chunked":
452 self.chunked = 1
455 self.chunked = 0
461 # NOTE: RFC 2616, S4.4, #3 says we ignore this if tr_enc is "chunked"
463 if length and not self.chunked:
480 # if the connection remains open, and we aren't using chunked, and
484 not self.chunked and \
542 if self.chunked:
580 assert self.chunked != _UNKNOWN
933 # we can accept "chunked" Transfer-Encodings, but no others
934 # NOTE: no TE header implies *only* "chunked"
935 #self.putheader('TE', 'chunked')
942 # For HTTP/1.0, the server will assume "not chunked"