Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sphinx-doc/sphinx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-02-22 11:39:56 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-02-22 11:39:56 +0300
commit2b70875f6a240bd5461276bd4e6598c61ccbc42d (patch)
tree53dcbf14e0ea73c32324da3fcd2b0bda7a73fc7e /sphinx/directives
parent8987f3c031236e8dd5c77ef49f902eb1dea488af (diff)
parentdf3c0448ddb1f3debbf91b669d4d85bfa5926514 (diff)
Merge branch 'drop_desc_signature_first' into 3.x
Diffstat (limited to 'sphinx/directives')
-rw-r--r--sphinx/directives/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/sphinx/directives/__init__.py b/sphinx/directives/__init__.py
index 61cd53302..fd447b551 100644
--- a/sphinx/directives/__init__.py
+++ b/sphinx/directives/__init__.py
@@ -169,7 +169,6 @@ class ObjectDescription(SphinxDirective):
# add a signature node for each signature in the current unit
# and add a reference target for it
signode = addnodes.desc_signature(sig, '')
- signode['first'] = False
node.append(signode)
try:
# name can also be a tuple, e.g. (classname, objname);