Skip to content

Commit 4634acd

Browse files
committed
More forceful wording in FIXME
1 parent d67cf1d commit 4634acd

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

mathics/builtin/fileformats/htmlformat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,6 @@ def eval(self, text, evaluation: Evaluation):
470470

471471
def eval_with_element(self, text, element, evaluation: Evaluation):
472472
"""%(name)s[text_String, element_]"""
473-
# FIXME?: right now we aren't using element. Things might be
474-
# more efficient if we used element?
473+
# FIXME: right now we aren't using element, and should use this to more
474+
# efficiently extract part of the HTML file that we want.
475475
return self.eval(text, evaluation)

mathics/builtin/fileformats/xmlformat.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,8 +347,8 @@ def lines():
347347

348348
def eval_with_element(self, text, element, evaluation: Evaluation):
349349
"""%(name)s[text_String, element_]"""
350-
# FIXME?: right now we aren't using element. Things might be
351-
# more efficient if we used element?
350+
# FIXME: right now we aren't using element, and should use this to more
351+
# efficiently extract part of the XML file that we want.
352352
return self.eval(text, evaluation)
353353

354354

0 commit comments

Comments
 (0)