calysto-scheme 2.0.2__tar.gz → 2.0.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/PKG-INFO +2 -2
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/README.md +1 -1
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/scheme.py +2 -2
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/PKG-INFO +2 -2
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/ChangeLog.md +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/Development.md +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/LICENSE.txt +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/MANIFEST.in +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/Makefile +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/__init__.py +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/__main__.py +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/fib.py +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/images/logo-32x32.png +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/images/logo-512x512.png +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/images/logo-64x64.png +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/kernel.json +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/kernel.py +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/modules/equality_predicates.ss +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/modules/sllgen.ss +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/modules/test_all.ss +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/SOURCES.txt +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/dependency_links.txt +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/requires.txt +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/top_level.txt +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/requirements.txt +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/scripts/calysto-scheme +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/scripts/calysto-scheme-debug +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/setup.cfg +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/setup.py +0 -0
- {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/tests/test_all.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: calysto_scheme
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: A Scheme kernel for Jupyter that can use Python libraries
|
|
5
5
|
Home-page: https://github.com/Calysto/calysto_scheme
|
|
6
6
|
Author: Douglas Blank
|
|
@@ -167,4 +167,4 @@ Planned:
|
|
|
167
167
|
|
|
168
168
|
Limitations:
|
|
169
169
|
|
|
170
|
-
* Runs
|
|
170
|
+
* Runs faster on PyPy
|
|
@@ -44,7 +44,7 @@ PY3 = sys.version_info[0] == 3
|
|
|
44
44
|
# Increase recursion limit for direct-eval fast path (deep Scheme recursion)
|
|
45
45
|
sys.setrecursionlimit(max(10000, sys.getrecursionlimit()))
|
|
46
46
|
|
|
47
|
-
__version__ = "2.0.
|
|
47
|
+
__version__ = "2.0.3"
|
|
48
48
|
|
|
49
49
|
#############################################################
|
|
50
50
|
# Python implementation notes:
|
|
@@ -10405,7 +10405,7 @@ def restart():
|
|
|
10405
10405
|
initialize_globals()
|
|
10406
10406
|
|
|
10407
10407
|
def main():
|
|
10408
|
-
print('Calysto Scheme, version 2.0.
|
|
10408
|
+
print('Calysto Scheme, version 2.0.3')
|
|
10409
10409
|
print('----------------------------')
|
|
10410
10410
|
import sys
|
|
10411
10411
|
for filename in sys.argv[1:]:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: calysto_scheme
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: A Scheme kernel for Jupyter that can use Python libraries
|
|
5
5
|
Home-page: https://github.com/Calysto/calysto_scheme
|
|
6
6
|
Author: Douglas Blank
|
|
@@ -167,4 +167,4 @@ Planned:
|
|
|
167
167
|
|
|
168
168
|
Limitations:
|
|
169
169
|
|
|
170
|
-
* Runs
|
|
170
|
+
* Runs faster on PyPy
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|