(self, debuglevel=0, source_address=None, timeout=10)
| 538 | args we need for ``source_address`` and ``timeout`` |
| 539 | """ |
| 540 | def __init__(self, debuglevel=0, source_address=None, timeout=10): |
| 541 | AbstractHTTPHandler.__init__(self, debuglevel) |
| 542 | self.source_address = source_address |
| 543 | self.timeout = timeout |
| 544 | |
| 545 | def http_open(self, req): |
| 546 | return self.do_open( |