PEP 493: fix typo

This commit is contained in:
Nick Coghlan 2015-05-19 23:17:09 +10:00
parent 4caa876719
commit c5e713f2d7
1 changed files with 3 additions and 3 deletions

View File

@ -280,9 +280,9 @@ environment variable should take precedence over the system-wide configuration
setting. This allows the setting to be changed for a given user, virtual
environment or application, regardless of the system-wide default behaviour.
In this case, if ``PYTHONHTTPSVERIFY`` environment variable is defined, and set
to anything *other* than ``'0'``, then HTTPS certificate verification should be
enabled.
In this case, if the ``PYTHONHTTPSVERIFY`` environment variable is defined, and
set to anything *other* than ``'0'``, then HTTPS certificate verification
should be enabled.
Example implementation
----------------------