pearu / sympycore

Automatically exported from code.google.com/p/sympycore
Other
11 stars 1 forks source link

Rename Basic.ClassName -> classes.ClassName etc #26

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

Apply the following renaming taks:
 - Basic.ClassName -> classes.ClassName
 - Basic.<predefined instance> -> objects.<predefine instance>

The `classes` and `objects` instances are available
via `from ..core import classes, objects`.

Note that sympy may provide public functions (that are
plain Python functions) that might be exposed in
a similar way as classes and objects. If so then
introduce `functions` object that is the singleton
instance of `Functions` class similar to Classes and
Objects classes in sympy/core/basic.py.

Original issue reported on code.google.com by pearu.peterson on 15 Nov 2007 at 6:43

GoogleCodeExporter commented 9 years ago
Done in svn.

`classes` and `objects` are instances of Holder class.
Adding `functions` if needed is trivial now.

Original comment by pearu.peterson on 15 Nov 2007 at 11:08