@@ -392,16 +392,16 @@ info and geturl
392392===============
393393
394394The response returned by urlopen (or the :exc: `~urllib.error.HTTPError ` instance) has two
395- useful methods :meth: `info ` and :meth: `geturl ` and is defined in the module
396- :mod: `urllib.response `..
395+ useful methods :meth: `! info ` and :meth: `! geturl ` and is defined in the module
396+ :mod: `urllib.response `.
397397
398- **geturl ** - this returns the real URL of the page fetched. This is useful
399- because ``urlopen `` (or the opener object used) may have followed a
400- redirect. The URL of the page fetched may not be the same as the URL requested.
398+ * * *geturl ** - this returns the real URL of the page fetched. This is useful
399+ because ``urlopen `` (or the opener object used) may have followed a
400+ redirect. The URL of the page fetched may not be the same as the URL requested.
401401
402- **info ** - this returns a dictionary-like object that describes the page
403- fetched, particularly the headers sent by the server. It is currently an
404- :class: `http.client.HTTPMessage ` instance.
402+ * * *info ** - this returns a dictionary-like object that describes the page
403+ fetched, particularly the headers sent by the server. It is currently an
404+ :class: `http.client.HTTPMessage ` instance.
405405
406406Typical headers include 'Content-length', 'Content-type', and so on. See the
407407`Quick Reference to HTTP Headers <https://jkorpela.fi/http.html >`_
@@ -507,7 +507,7 @@ than the URL you pass to .add_password() will also match. ::
507507
508508 In the above example we only supplied our ``HTTPBasicAuthHandler `` to
509509 ``build_opener ``. By default openers have the handlers for normal situations
510- -- ``ProxyHandler `` (if a proxy setting such as an :envvar: `http_proxy `
510+ -- ``ProxyHandler `` (if a proxy setting such as an :envvar: `! http_proxy `
511511 environment variable is set), ``UnknownHandler ``, ``HTTPHandler ``,
512512 ``HTTPDefaultErrorHandler ``, ``HTTPRedirectHandler ``, ``FTPHandler ``,
513513 ``FileHandler ``, ``DataHandler ``, ``HTTPErrorProcessor ``.
0 commit comments