From: Michael Orlitzky Date: Fri, 2 Aug 2019 23:18:11 +0000 (-0400) Subject: eja: move the element constructor into the parent algebra class. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=634dab08d886610e41dfd363a0a608a9405abe8e;hp=634dab08d886610e41dfd363a0a608a9405abe8e;p=sage.d.git eja: move the element constructor into the parent algebra class. Instead of using the element's __init__(), we're now using the algebra's _element_constructor_() method that only gets called after the parent tries to coerce the argument and fails. This is somewhat cleaner because we don't have to handle the "usual" case. ---