Skip to content

Commit 9685885

Browse files
authored
Merge pull request #1473 from mathics/list-reorg
Start massive list breakdown
2 parents b2408a0 + de9c967 commit 9685885

File tree

6 files changed

+2109
-2014
lines changed

6 files changed

+2109
-2014
lines changed

mathics/builtin/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ def is_builtin(var):
160160
"drawing",
161161
"files_io",
162162
"intfns",
163+
"list",
163164
"numbers",
164165
"specialfns",
165166
"string",

mathics/builtin/list/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
"""
2+
List Functions
3+
4+
S-Expressions make up a core part of Mathics. The parsed and internal representation of an an S-Expression is nothing more than a list with possibliy nested elements.
5+
6+
As a result, there about a hundred list functions.
7+
"""
8+
9+
from mathics.version import __version__ # noqa used in loading to check consistency.

0 commit comments

Comments
 (0)