Merged upstream.
diff --git a/Doc/library/urllib.request.rst b/Doc/library/urllib.request.rst
index c3a0a43..825398b 100644
--- a/Doc/library/urllib.request.rst
+++ b/Doc/library/urllib.request.rst
@@ -931,7 +931,7 @@
 HTTPErrorProcessor Objects
 --------------------------
 
-.. method:: HTTPErrorProcessor.unknown_open()
+.. method:: HTTPErrorProcessor.http_response()
 
    Process HTTP error responses.
 
@@ -943,6 +943,13 @@
    :exc:`HTTPError` if no other handler handles the error.
 
 
+.. method:: HTTPErrorProcessor.https_response()
+
+   Process HTTPS error responses.
+
+   The behavior is same as :meth:`http_response`.
+
+
 .. _urllib-request-examples:
 
 Examples