Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion mathics/builtin/files_io/files.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@
parse_read_options,
read_name_and_stream,
)
from mathics.eval.makeboxes import do_format, format_element, render_input_form
from mathics.eval.makeboxes import do_format, format_element
from mathics.eval.stackframe import get_eval_Expression
from mathics.form import render_input_form


class Input_(Predefined):
Expand Down
2 changes: 1 addition & 1 deletion mathics/builtin/forms/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
eval_tableform,
eval_texform,
)
from mathics.eval.makeboxes.inputform import render_input_form
from mathics.form import render_input_form


class BaseForm(FormBaseClass):
Expand Down
1 change: 0 additions & 1 deletion mathics/eval/makeboxes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"""

from mathics.eval.makeboxes.formatvalues import StringLParen, StringRParen, do_format
from mathics.eval.makeboxes.inputform import render_input_form
from mathics.eval.makeboxes.makeboxes import (
_boxed_string,
eval_generic_makeboxes,
Expand Down
7 changes: 7 additions & 0 deletions mathics/form/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""
Function that generate $PrintForms
"""

from mathics.form.inputform import render_input_form

__all__ = ["render_input_form"]
File renamed without changes.