Skip to content

Commit 55647b1

Browse files
committed
Doc tweaks: link to Python 3 with intersphinx; don't add parens to methods and functions.
1 parent 26b5d75 commit 55647b1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
#default_role = None
8484

8585
# If true, '()' will be appended to :func: etc. cross-reference text.
86-
#add_function_parentheses = True
86+
add_function_parentheses = False
8787

8888
# If true, the current module name will be prepended to all description
8989
# unit titles (such as .. function::).
@@ -273,5 +273,5 @@
273273

274274
# Example configuration for intersphinx: refer to the Python standard library.
275275
intersphinx_mapping = {
276-
'python': ('http://docs.python.org/', None)
276+
'python': ('http://docs.python.org/3/', None)
277277
}

docs/source/guide/snapshot.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ What about the other two frame objects in the graph? The worker thread spends
117117
almost all its time waiting, and that top frame is the current frame of the
118118
worker thread. It refers to the ``wait`` method of the
119119
:py:class:`threading.Condition` object used by the jobs queue. The ``f_back``
120-
edge refers to the calling frame, in this case the :py:meth:`Queue.Queue.get`
120+
edge refers to the calling frame, in this case the :py:meth:`queue.Queue.get`
121121
method call, whose ``f_back`` refers in turn to our ``worker`` function.
122122

123123

0 commit comments

Comments
 (0)