Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix live code to not use deprecated function #197

Open
wants to merge 1 commit into
base: sources
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion templates/features.html
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ <h3>{% trans %}Parsing{% endtrans %}</h3>
<ul>
<li><strong>{% trans %}Conversion from Python objects to SymPy objects{% endtrans %}</strong></li>
<li><strong>{% trans %}Optional implicit multiplication and function application parsing{% endtrans %}</strong></li>
<li><strong>{% trans %}Limited Mathematica and Maxima parsing:{% endtrans %}</strong> <a href="https://live.sympy.org/?evaluate=from%20sympy.parsing.mathematica%20import%20mathematica%0A%23--%0Afrom%20sympy.parsing.maxima%20import%20parse_maxima%0A%23--%0Amathematica(%27Sin%5Bx%5D%27)%0A%23--%0Aparse_maxima(%27sqrt(x%5E2)%27)%0A%23--%0A">{% trans %}example on SymPy Live{% endtrans %}</a></li>
<li><strong>{% trans %}Limited Mathematica and Maxima parsing:{% endtrans %}</strong> <a href="https://live.sympy.org/?evaluate=from%20sympy.parsing.mathematica%20import%20parse_mathematica%0A%23--%0Afrom%20sympy.parsing.maxima%20import%20parse_maxima%0A%23--%0Aparse_mathematica(%27Sin%5Bx%5D%27)%0A%23--%0Aparse_maxima(%27sqrt(x%5E2)%27)%0A%23--%0A">{% trans %}example on SymPy Live{% endtrans %}</a></li>
<li><strong>{% trans %}Custom parsing transformations{% endtrans %}</strong></li>
</ul>
</div>
Expand Down