summaryrefslogtreecommitdiff
path: root/doc/development/tutorials/examples/helloworld.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/development/tutorials/examples/helloworld.py')
-rw-r--r--doc/development/tutorials/examples/helloworld.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/development/tutorials/examples/helloworld.py b/doc/development/tutorials/examples/helloworld.py
index 66ab3295d..d6d81fd4f 100644
--- a/doc/development/tutorials/examples/helloworld.py
+++ b/doc/development/tutorials/examples/helloworld.py
@@ -11,3 +11,9 @@ class HelloWorld(Directive):
def setup(app):
app.add_directive("helloworld", HelloWorld)
+
+ return {
+ 'version': '0.1',
+ 'parallel_read_safe': True,
+ 'parallel_write_safe': True,
+ }