예제 #1
0
파일: mathml.py 프로젝트: BDGLunde/sympy
    def doprint(self, expr):
        """
        Prints the expression as MathML.
        """
        mathML = Printer._print(self, expr)

        res = mathML.toxml()
        return res
예제 #2
0
파일: mathml.py 프로젝트: BDGLunde/sympy
    def doprint(self, expr):
        """
        Prints the expression as MathML.
        """
        mathML = Printer._print(self, expr)

        res = mathML.toxml()
        return res
예제 #3
0
파일: mathml.py 프로젝트: FireJade/sympy
 def doprint(self, expr):
     """
     Prints the expression as MathML.
     """
     mathML = Printer._print(self, expr)
     unistr = mathML.toxml()
     xmlbstr = unistr.encode('ascii', 'xmlcharrefreplace')
     res = xmlbstr.decode()
     return res
예제 #4
0
 def doprint(self, expr):
     """
     Prints the expression as MathML.
     """
     mathML = Printer._print(self, expr)
     unistr = mathML.toxml()
     xmlbstr = unistr.encode('ascii', 'xmlcharrefreplace')
     res = xmlbstr.decode()
     return res
예제 #5
0
 def doprint(self, expr):
     mathML = Printer._print(self, expr)
     return mathML.toxml(encoding=self._settings['encoding'])
예제 #6
0
파일: mathml.py 프로젝트: SgtMook/sympy
 def doprint(self, expr):
     mathML = Printer._print(self, expr)
     return mathML.toxml()
예제 #7
0
파일: mathml.py 프로젝트: Visheshk/sympy
 def doprint(self, expr):
     mathML = Printer._print(self, expr)
     return mathML.toxml()