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-07 05:12:13 +0300
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2020-02-08 18:58:42 +0300
commitdf3c0448ddb1f3debbf91b669d4d85bfa5926514 (patch)
tree06127dd07ef25a5c0a4eb032e2e903d07387787d /sphinx/directives
parent2e87ee85a22279ee4ecc658f830520a88c90236d (diff)
Deprecate desc_signature['first']
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 9a2fb4412..6b9e5b828 100644
--- a/sphinx/directives/__init__.py
+++ b/sphinx/directives/__init__.py
@@ -167,7 +167,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);