You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
806 B

diff -up ./Doc/conf.py.bak ./Doc/conf.py
--- ./Doc/conf.py.bak 2021-07-05 08:16:40.083571171 +0000
+++ ./Doc/conf.py 2021-07-05 08:17:17.754162806 +0000
@@ -15,7 +15,7 @@ import sys, os
# Modules to document with autodoc are in another directory
sys.path.insert(0, os.path.abspath('../lib'))
-print sys.path
+print(sys.path)
# Mock existence of native modules
from Crypto.Util import _raw_api
@@ -155,7 +155,7 @@ html_static_path = ['_static']
# Ensure that text wrapping works in a table, by overring some CSS.
# See https://github.com/rtfd/sphinx_rtd_theme/issues/117
def setup(app):
- app.add_stylesheet('theme_overrides.css')
+ app.add_css_file('theme_overrides.css')
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.