From 397f67db058ac5488df91a18a7c80fcfb932f7f2 Mon Sep 17 00:00:00 2001 From: Benjamin Bertrand Date: Tue, 12 Jan 2016 09:51:31 +0300 Subject: [PATCH] allow import of txt and add todo on database --- pymath/__init__.py | 2 +- pymath/calculus/__init__.py | 2 +- pymath/stat/dataset.py | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pymath/__init__.py b/pymath/__init__.py index 53fb338..44cea70 100644 --- a/pymath/__init__.py +++ b/pymath/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # encoding: utf-8 -from .calculus import Expression, Polynom, Fraction, random_str +from .calculus import Expression, Polynom, Fraction, random_str, txt from .stat import Dataset, WeightedDataset # ----------------------------- diff --git a/pymath/calculus/__init__.py b/pymath/calculus/__init__.py index 13f43cf..4e0ba5f 100644 --- a/pymath/calculus/__init__.py +++ b/pymath/calculus/__init__.py @@ -5,7 +5,7 @@ from .expression import Expression from .polynom import Polynom from .fraction import Fraction from .random_expression import random_str -#from .render import txt,tex +from .render import txt # ----------------------------- diff --git a/pymath/stat/dataset.py b/pymath/stat/dataset.py index 7640381..dee145f 100644 --- a/pymath/stat/dataset.py +++ b/pymath/stat/dataset.py @@ -7,6 +7,8 @@ # # +# TODO: Rendre toutes les réponses Explicable!! |mar. janv. 12 09:41:00 EAT 2016 + from math import sqrt, ceil from .number_tools import number_factory from .random_generator import random_generator