comparison mercurial/url.py @ 12394:9d45f78c465b

Merge with stable
author Patrick Mezard <pmezard@gmail.com>
date Fri, 24 Sep 2010 00:17:04 +0200
parents 5d22e631c365 ca5fd84d62c6
children 0f83a402faa0
comparison
equal deleted inserted replaced
12390:aff4afdcfd2b 12394:9d45f78c465b
484 484
485 def _start_transaction(self, h, req): 485 def _start_transaction(self, h, req):
486 _generic_start_transaction(self, h, req) 486 _generic_start_transaction(self, h, req)
487 return keepalive.HTTPHandler._start_transaction(self, h, req) 487 return keepalive.HTTPHandler._start_transaction(self, h, req)
488 488
489 def __del__(self):
490 self.close_all()
491
492 if has_https: 489 if has_https:
493 class BetterHTTPS(httplib.HTTPSConnection): 490 class BetterHTTPS(httplib.HTTPSConnection):
494 send = keepalive.safesend 491 send = keepalive.safesend
495 492
496 def connect(self): 493 def connect(self):