Initialisation du repository de Beta
This commit is contained in:
commit
14985f6dbb
9469 changed files with 1903273 additions and 0 deletions
|
|
@ -0,0 +1,22 @@
|
|||
"""
|
||||
Rational number type based on Python integers.
|
||||
|
||||
The PythonRational class from here has been moved to
|
||||
sympy.external.pythonmpq
|
||||
|
||||
This module is just left here for backwards compatibility.
|
||||
"""
|
||||
|
||||
|
||||
from sympy.core.numbers import Rational
|
||||
from sympy.core.sympify import _sympy_converter
|
||||
from sympy.utilities import public
|
||||
from sympy.external.pythonmpq import PythonMPQ
|
||||
|
||||
|
||||
PythonRational = public(PythonMPQ)
|
||||
|
||||
|
||||
def sympify_pythonrational(arg):
|
||||
return Rational(arg.numerator, arg.denominator)
|
||||
_sympy_converter[PythonRational] = sympify_pythonrational
|
||||
Loading…
Add table
Add a link
Reference in a new issue