Initialisation du repository de Beta
This commit is contained in:
commit
14985f6dbb
9469 changed files with 1903273 additions and 0 deletions
|
|
@ -0,0 +1,30 @@
|
|||
"""This module contains some general purpose utilities that are used across
|
||||
SymPy.
|
||||
"""
|
||||
from .iterables import (flatten, group, take, subsets,
|
||||
variations, numbered_symbols, cartes, capture, dict_merge,
|
||||
prefixes, postfixes, sift, topological_sort, unflatten,
|
||||
has_dups, has_variety, reshape, rotations)
|
||||
|
||||
from .misc import filldedent
|
||||
|
||||
from .lambdify import lambdify
|
||||
|
||||
from .decorator import threaded, xthreaded, public, memoize_property
|
||||
|
||||
from .timeutils import timed
|
||||
|
||||
__all__ = [
|
||||
'flatten', 'group', 'take', 'subsets', 'variations', 'numbered_symbols',
|
||||
'cartes', 'capture', 'dict_merge', 'prefixes', 'postfixes', 'sift',
|
||||
'topological_sort', 'unflatten', 'has_dups', 'has_variety', 'reshape',
|
||||
'rotations',
|
||||
|
||||
'filldedent',
|
||||
|
||||
'lambdify',
|
||||
|
||||
'threaded', 'xthreaded', 'public', 'memoize_property',
|
||||
|
||||
'timed',
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue