Return the HTTP status code that was sent with the response, or None if the URL is not an HTTP URL.
(self)
| 819 | return self.url |
| 820 | |
| 821 | def getcode(self): |
| 822 | '''Return the HTTP status code that was sent with the response, |
| 823 | or None if the URL is not an HTTP URL. |
| 824 | |
| 825 | ''' |
| 826 | return self.status |
| 827 | |
| 828 | |
| 829 | def _create_https_context(http_version): |
no outgoing calls