|
6 | 6 | 5.0.3dev0 |
7 | 7 | --------- |
8 | 8 |
|
| 9 | +API |
| 10 | ++++ |
| 11 | + |
| 12 | +#. New function ``mathics.system_info.python_implementation()`` shows the Python Implementation, e.g. CPython, PyPy, Pyston that is running Python. This is included in the information ``mathics.system_info.mathics_system__system_info()`` returns and is used in ``$PythonImplementation`` |
| 13 | +#. A list of optional software can be found in ``mathics.optional_software``. Versions of that software are included in ``mathics.version_info``. |
| 14 | + |
| 15 | + |
| 16 | +Package update |
| 17 | +.............. |
| 18 | + |
| 19 | +#. SymPy 1.11.1 accepted |
| 20 | +#. Numpy 1.24.0 accepted |
| 21 | + |
| 22 | + |
9 | 23 | New Builtins |
10 | 24 | +++++++++++ |
11 | 25 |
|
@@ -35,18 +49,21 @@ Documentation |
35 | 49 | #. "Exponential Functional" split out from "Trigonometry Functions" |
36 | 50 | #. A new section on "Accuracy and Precision" was included in the manual. |
37 | 51 | #. "Forms of Input and Output" is its own section |
| 52 | +#. All Builtins have links to WMA pages. |
| 53 | +#. More url links to Wiki pages added; more internal cross links added. |
38 | 54 |
|
39 | 55 | Internals |
40 | 56 | +++++++++ |
41 | 57 |
|
42 | 58 | #. ``boxes_to_`` methods are now optional for ``BoxElement`` subclasses. Most of the code is now moved to the ``mathics.format`` submodule, and implemented in a more scalable way. |
43 | 59 | #. ``mathics.builtin.inout`` was splitted in several modules (``inout``, ``messages``, ``layout``, ``makeboxes``) in order to improve the documentation. |
44 | | -#. `from_mpmath` conversion supports a new parameter ``acc`` to set the accuracy of the number. |
| 60 | +#. ``from_mpmath`` conversion supports a new parameter ``acc`` to set the accuracy of the number. |
45 | 61 | #. Operator name to unicode or ASCII comes from Mathics scanner character tables. |
46 | | -#. ``eval*`` methods in `Builtin` classes are considerer as synonyms of ``apply*`` methods. |
47 | | -#. Modularize and improve the way in which `Builtin` classes are selected to have an associated `Definition`. |
48 | | -#. `_SetOperator.assign_elementary` was renamed as `_SetOperator.assign`. All the special cases are not handled by the `_SetOperator.special_cases` dict. |
49 | | - |
| 62 | +#. Builtin instance methods that start ``apply`` are considered rule matching and function application; the use of the name ``apply``is deprecated, when ``eval`` is intended. |
| 63 | +#. Modularize and improve the way in which ``Builtin`` classes are selected to have an associated ``Definition``. |
| 64 | +#. ``_SetOperator.assign_elementary`` was renamed as ``_SetOperator.assign``. All the special cases are not handled by the ``_SetOperator.special_cases`` dict. |
| 65 | +#. ``isort`` run over all Python files. More type annotations and docstrings on functions added. |
| 66 | +#. caching on immutable atoms like, ``String``, ``Integer``, ``Real``, etc. was improved; the ``__hash__()`` function was sped up. There is a small speedup overall from this at the expense of increased memory. |
50 | 67 |
|
51 | 68 |
|
52 | 69 | Bugs |
|
0 commit comments