diff options
| author | Tim Graham <timograham@gmail.com> | 2016-01-13 11:33:25 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-01-13 11:33:25 -0500 |
| commit | 03306a187ec3bb5e2592728a900d4a41185f9e30 (patch) | |
| tree | cba215414e1cff9262ca6cfbd6883aafa6484ac9 /docs | |
| parent | cca151d196d520f799d3517a9719d03c0c8c9d8a (diff) | |
Declared Sphinx extensions safe for parallel reading.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/_ext/djangodocs.py | 1 | ||||
| -rw-r--r-- | docs/_ext/ticket_role.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/docs/_ext/djangodocs.py b/docs/_ext/djangodocs.py index ea56a5b5b6..bc653f78fa 100644 --- a/docs/_ext/djangodocs.py +++ b/docs/_ext/djangodocs.py @@ -67,6 +67,7 @@ def setup(app): man=(visit_snippet_literal, depart_snippet_literal), text=(visit_snippet_literal, depart_snippet_literal), texinfo=(visit_snippet_literal, depart_snippet_literal)) + return {'parallel_read_safe': True} class snippet_with_filename(nodes.literal_block): diff --git a/docs/_ext/ticket_role.py b/docs/_ext/ticket_role.py index b53778558e..809b4239b2 100644 --- a/docs/_ext/ticket_role.py +++ b/docs/_ext/ticket_role.py @@ -36,3 +36,4 @@ def ticket_role(name, rawtext, text, lineno, inliner, options=None, content=None def setup(app): app.add_config_value('ticket_url', None, 'env') app.add_role('ticket', ticket_role) + return {'parallel_read_safe': True} |
