From: Mark Amery Date: Sun, 7 Jan 2018 12:22:52 +0000 (+0000) Subject: Add Python docs to intersphinx_mapping X-Git-Tag: rel_0_9_8~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9d95042006dcaf050558f98e53fea97331eb48f3;p=thirdparty%2Fsqlalchemy%2Falembic.git Add Python docs to intersphinx_mapping This allows refs like the ConfigParser one at http://alembic.zzzcomputing.com/en/latest/tutorial.html to automatically get turned into links, and suppresses the warning about them not being found when running 'make html' (cherry picked from commit 49f0da899284f3ab9b1dc27c283619762b760e2c) Change-Id: Idf9fce72894bac0ab7b717cc864c8c636cc27b2d --- diff --git a/docs/build/conf.py b/docs/build/conf.py index c2404196..f72d252c 100644 --- a/docs/build/conf.py +++ b/docs/build/conf.py @@ -229,4 +229,5 @@ autoclass_content = "both" intersphinx_mapping = { 'sqla':('http://www.sqlalchemy.org/docs/', None), + 'python':('http://docs.python.org/', None), }