Fix: rename list_generator to random_list
This commit is contained in:
parent
55985bfe20
commit
f767aa390c
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env python
|
||||
# encoding: utf-8
|
||||
|
||||
from .calculus import Expression, Integer, Decimal, list_generator
|
||||
from .calculus import Expression, Integer, Decimal, random_list
|
||||
|
||||
# Expression.set_render('tex')
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ Expression is the classe wich handle all calculus. It can randomly generate or i
|
|||
"""
|
||||
|
||||
from .API import Expression, Integer, Decimal
|
||||
from .core import list_generator
|
||||
from .core import random_list
|
||||
from decimal import getcontext
|
||||
#getcontext().prec = 2
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ from .tree import Tree, AssocialTree
|
|||
from .compute import compute
|
||||
from .typing import typing, TypingError
|
||||
from .renders import tree2txt, tree2tex
|
||||
from .random import list_generator
|
||||
from .random import list_generator as random_list
|
||||
|
||||
|
||||
# -----------------------------
|
||||
|
|
Loading…
Reference in New Issue