##// END OF EJS Templates
bugzilla: stop mentioning Pythons older than 2.6...
Augie Fackler -
r30478:f7d66746 default
parent child Browse files
Show More
@@ -571,9 +571,9 b' class cookietransportrequest(object):'
571 self.send_user_agent(h)
571 self.send_user_agent(h)
572 self.send_content(h, request_body)
572 self.send_content(h, request_body)
573
573
574 # Deal with differences between Python 2.4-2.6 and 2.7.
574 # Deal with differences between Python 2.6 and 2.7.
575 # In the former h is a HTTP(S). In the latter it's a
575 # In the former h is a HTTP(S). In the latter it's a
576 # HTTP(S)Connection. Luckily, the 2.4-2.6 implementation of
576 # HTTP(S)Connection. Luckily, the 2.6 implementation of
577 # HTTP(S) has an underlying HTTP(S)Connection, so extract
577 # HTTP(S) has an underlying HTTP(S)Connection, so extract
578 # that and use it.
578 # that and use it.
579 try:
579 try:
General Comments 0
You need to be logged in to leave comments. Login now