overlay.language 0.2.0.post13.dev0__tar.gz → 0.2.0.post18.dev0__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 (20) hide show
  1. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/PKG-INFO +1 -1
  2. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/README.md +1 -1
  3. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/docs/index.rst +1 -1
  4. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/docs/overlay-language-tutorial.rst +1 -1
  5. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/src/overlay/language/_core.py +1 -1
  6. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/.gitignore +0 -0
  7. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/docs/Makefile +0 -0
  8. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/docs/_static/favicon.svg +0 -0
  9. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/docs/_static/logo.svg +0 -0
  10. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/docs/conf.py +0 -0
  11. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/docs/installation.rst +0 -0
  12. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/docs/specification.md +0 -0
  13. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/docs/tutorial.rst +0 -0
  14. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/pyproject.toml +0 -0
  15. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/src/overlay/language/__init__.py +0 -0
  16. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/src/overlay/language/_config.py +0 -0
  17. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/src/overlay/language/_interned_linked_list.py +0 -0
  18. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/src/overlay/language/_mixin_directory.py +0 -0
  19. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/src/overlay/language/_mixin_parser.py +0 -0
  20. {overlay_language-0.2.0.post13.dev0 → overlay_language-0.2.0.post18.dev0}/src/overlay/language/_runtime.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: overlay.language
3
- Version: 0.2.0.post13.dev0
3
+ Version: 0.2.0.post18.dev0
4
4
  Summary: A dependency injection framework with pytest-fixture syntax, plus a configuration language for declarative programming
5
5
  Project-URL: Repository, https://github.com/Atry/overlay
6
6
  Author-email: "Yang, Bo" <yang-bo@yang-bo.com>
@@ -2,7 +2,7 @@
2
2
 
3
3
  A dependency injection framework with pytest-fixture syntax, plus a
4
4
  configuration language for declarative programming, based on
5
- [Overlay-Calculus](https://arxiv.org/abs/2602.16291).
5
+ [overlay-calculus](https://arxiv.org/abs/2602.16291).
6
6
 
7
7
  ## Documentation
8
8
 
@@ -24,7 +24,7 @@ logic, or dreaded porting an application from sync to async, or needed to swap
24
24
  between providers without rewriting half your Python — the Overlay language can
25
25
  help. Despite looking like a configuration format, it is also a statically typed
26
26
  modern programming language based on
27
- `Overlay-Calculus <https://arxiv.org/abs/2602.16291>`_, which is provably more
27
+ `overlay-calculus <https://arxiv.org/abs/2602.16291>`_, which is provably more
28
28
  expressive than λ-calculus, so it can express your entire business logic — not
29
29
  just configuration. Move that logic into the Overlay language and Python reduces
30
30
  to thin I/O adapters that are trivial to mock or replace. The same Overlay code runs against any set of adapters and the business logic
@@ -342,5 +342,5 @@ using the fixture package at
342
342
  The full language specification is in :doc:`specification`.
343
343
 
344
344
  The semantics of the Overlay language are grounded in the
345
- `Overlay-Calculus <https://arxiv.org/abs/2602.16291>`_, a formal calculus of
345
+ `overlay-calculus <https://arxiv.org/abs/2602.16291>`_, a formal calculus of
346
346
  overlays.
@@ -1184,7 +1184,7 @@ class MixinSymbol(HasDict, Mapping[Hashable, "MixinSymbol"], Symbol):
1184
1184
  symbol is expanded through its ``unions`` and their
1185
1185
  ``normalized_references``.
1186
1186
 
1187
- Corresponds to the ``this`` function in the Overlay-Calculus paper::
1187
+ Corresponds to the ``this`` function in the overlay-calculus paper::
1188
1188
 
1189
1189
  this(p, p_def) = { p_site | (p_site, p_overlay) in supers(p),
1190
1190
  s.t. p_overlay = p_def }