JuliaPy / SymPy.jl

Julia interface to SymPy via PyCall
http://juliapy.github.io/SymPy.jl/
MIT License
268 stars 62 forks source link

Where is factor_list? #380

Closed baggepinnen closed 3 years ago

baggepinnen commented 3 years ago

Here https://juliahub.com/docs/SymPy/KzewI/1.0.31/Tutorial/simplification/#Polynomial/Rational-Function-Simplification-1 is mentioned a function factor_list, but I can't seem to find it

julia> SymPy.factor_list
ERROR: UndefVarError: factor_list not defined
Stacktrace:
 [1] getproperty(::Module, ::Symbol) at ./Base.jl:26
 [2] top-level scope at none:1

on latest released version

jverzani commented 3 years ago

Most functionality is in the python object sympy not the Julia module SymPy, so the function is called by sympy.factor_list(...).