summaryrefslogtreecommitdiff
path: root/sphinx/ext/mathbase.py
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-20 02:24:34 +0900
committerTakeshi KOMIYA <i.tkomiya@gmail.com>2018-01-20 02:24:34 +0900
commit20a6cb624079d02d96d49d1884b615f1eb92e4ec (patch)
tree6e16fa2259b8556cd83fec138d645d257d2ccc63 /sphinx/ext/mathbase.py
parent2b89f72d54acf1503ac4f9a79e22daf9882d6b2d (diff)
downloadsphinx-git-20a6cb624079d02d96d49d1884b615f1eb92e4ec.tar.gz
mathbase: Remove unused data
Diffstat (limited to 'sphinx/ext/mathbase.py')
-rw-r--r--sphinx/ext/mathbase.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/sphinx/ext/mathbase.py b/sphinx/ext/mathbase.py
index 8370c923e..8372c3ddd 100644
--- a/sphinx/ext/mathbase.py
+++ b/sphinx/ext/mathbase.py
@@ -52,8 +52,7 @@ class MathDomain(Domain):
label = 'mathematics'
initial_data = {
- 'nameids': {}, # label -> equation ID
- 'objects': {}, # equation ID -> (docname, eqno)
+ 'objects': {}, # labelid -> (docname, eqno)
} # type: Dict[unicode, Dict[unicode, Tuple[unicode, int]]]
dangling_warnings = {
'eq': 'equation not found: %(target)s',