diff options
author | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2018-10-15 00:58:32 +0100 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2018-10-15 00:58:32 +0100 |
commit | b205764fdde4549c48c27841aa17e6c7f499e808 (patch) | |
tree | 1475eb57dc854ea4a1dc93c1c6a567e6fc584e5c /doc/src/conf.py | |
parent | e7227ce87b8da75fef1a3376ebb47e2bf20f6063 (diff) | |
parent | 7a5edff6c66a0410d6fecd4445980aabafc3ab4a (diff) | |
download | psycopg2-errors-module.tar.gz |
Merge branch 'master' into errors-moduleerrors-module
Diffstat (limited to 'doc/src/conf.py')
-rw-r--r-- | doc/src/conf.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/src/conf.py b/doc/src/conf.py index 2c52a56..fa22a91 100644 --- a/doc/src/conf.py +++ b/doc/src/conf.py @@ -61,9 +61,8 @@ except ImportError: release = version intersphinx_mapping = { - 'py': ('https://docs.python.org/2', None), - 'py3': ('https://docs.python.org/3', None), - } + 'py': ('https://docs.python.org/3', None), +} # Pattern to generate links to the bug tracker ticket_url = 'https://github.com/psycopg/psycopg2/issues/%s' @@ -117,12 +116,12 @@ todo_include_todos = False rst_epilog = """ .. |DBAPI| replace:: DB API 2.0 -.. _DBAPI: http://www.python.org/dev/peps/pep-0249/ +.. _DBAPI: https://www.python.org/dev/peps/pep-0249/ .. _transaction isolation level: - http://www.postgresql.org/docs/current/static/transaction-iso.html + https://www.postgresql.org/docs/current/static/transaction-iso.html -.. _mx.DateTime: http://www.egenix.com/products/python/mxBase/mxDateTime/ +.. _mx.DateTime: https://www.egenix.com/products/python/mxBase/mxDateTime/ .. |MVCC| replace:: :abbr:`MVCC (Multiversion concurrency control)` """ |