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.
Files changed (30) hide show
  1. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/PKG-INFO +2 -2
  2. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/README.md +1 -1
  3. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/scheme.py +2 -2
  4. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/PKG-INFO +2 -2
  5. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/ChangeLog.md +0 -0
  6. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/Development.md +0 -0
  7. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/LICENSE.txt +0 -0
  8. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/MANIFEST.in +0 -0
  9. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/Makefile +0 -0
  10. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/__init__.py +0 -0
  11. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/__main__.py +0 -0
  12. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/fib.py +0 -0
  13. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/images/logo-32x32.png +0 -0
  14. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/images/logo-512x512.png +0 -0
  15. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/images/logo-64x64.png +0 -0
  16. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/kernel.json +0 -0
  17. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/kernel.py +0 -0
  18. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/modules/equality_predicates.ss +0 -0
  19. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/modules/sllgen.ss +0 -0
  20. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme/modules/test_all.ss +0 -0
  21. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/SOURCES.txt +0 -0
  22. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/dependency_links.txt +0 -0
  23. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/requires.txt +0 -0
  24. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/calysto_scheme.egg-info/top_level.txt +0 -0
  25. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/requirements.txt +0 -0
  26. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/scripts/calysto-scheme +0 -0
  27. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/scripts/calysto-scheme-debug +0 -0
  28. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/setup.cfg +0 -0
  29. {calysto_scheme-2.0.2 → calysto_scheme-2.0.3}/setup.py +0 -0
  30. {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.2
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 slow on CPython; try PyPy
170
+ * Runs faster on PyPy
@@ -140,4 +140,4 @@ Planned:
140
140
 
141
141
  Limitations:
142
142
 
143
- * Runs slow on CPython; try PyPy
143
+ * 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.2"
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.2')
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.2
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 slow on CPython; try PyPy
170
+ * Runs faster on PyPy
File without changes
File without changes
File without changes