koatl 0.1.39__tar.gz → 0.1.40__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 (129) hide show
  1. {koatl-0.1.39 → koatl-0.1.40}/Cargo.lock +1 -1
  2. {koatl-0.1.39 → koatl-0.1.40}/PKG-INFO +1 -1
  3. {koatl-0.1.39 → koatl-0.1.40}/koatl/Cargo.toml +1 -1
  4. {koatl-0.1.39 → koatl-0.1.40/koatl}/python/koatl/runtime/record.py +0 -3
  5. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/lazy_module.tl +10 -4
  6. {koatl-0.1.39 → koatl-0.1.40}/koatl/src/lib.rs +17 -8
  7. {koatl-0.1.39/koatl → koatl-0.1.40}/python/koatl/runtime/record.py +0 -3
  8. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/lazy_module.tl +10 -4
  9. {koatl-0.1.39 → koatl-0.1.40}/Cargo.toml +0 -0
  10. {koatl-0.1.39 → koatl-0.1.40}/README.md +0 -0
  11. {koatl-0.1.39 → koatl-0.1.40}/koatl/.github/workflows/CI.yml +0 -0
  12. {koatl-0.1.39 → koatl-0.1.40}/koatl/.gitignore +0 -0
  13. {koatl-0.1.39 → koatl-0.1.40}/koatl/LICENSE +0 -0
  14. {koatl-0.1.39 → koatl-0.1.40}/koatl/README.md +0 -0
  15. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/__init__.py +0 -0
  16. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/__main__.py +0 -0
  17. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/cli.py +0 -0
  18. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/notebook/__init__.py +0 -0
  19. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/notebook/magic.py +0 -0
  20. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/prelude/__init__.tl +0 -0
  21. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/runtime/__init__.py +0 -0
  22. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/runtime/meta_finder.py +0 -0
  23. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/runtime/vattr.py +0 -0
  24. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/alg/__init__.tl +0 -0
  25. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/alg/async.tl +0 -0
  26. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/alg/base.tl +0 -0
  27. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/alg/do.tl +0 -0
  28. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/alg/env.tl +0 -0
  29. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/alg/memo.tl +0 -0
  30. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/alg/result.tl +0 -0
  31. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/data/__init__.tl +0 -0
  32. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/data/list.tl +0 -0
  33. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/data/record.tl +0 -0
  34. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/ext.tl +0 -0
  35. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/io.tl +0 -0
  36. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/iter.tl +0 -0
  37. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/re.tl +0 -0
  38. {koatl-0.1.39 → koatl-0.1.40}/koatl/python/koatl/std/trait.py +0 -0
  39. {koatl-0.1.39 → koatl-0.1.40}/koatl/requirements.txt +0 -0
  40. {koatl-0.1.39 → koatl-0.1.40}/koatl/src/emit_py.rs +0 -0
  41. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/containers.tl +0 -0
  42. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/data.txt +0 -0
  43. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/decorators.tl +0 -0
  44. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/destructure-for-and-fn.tl +0 -0
  45. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/destructure.tl +0 -0
  46. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/escape_ident.tl +0 -0
  47. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/fstr.tl +0 -0
  48. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/functions.tl +0 -0
  49. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/generator.tl +0 -0
  50. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/if_expr.tl +0 -0
  51. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/loops.tl +0 -0
  52. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/match.tl +0 -0
  53. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/nary-list.tl +0 -0
  54. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/placeholder.tl +0 -0
  55. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/precedence.tl +0 -0
  56. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/scopes.tl +0 -0
  57. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/semantic_whitespace.tl +0 -0
  58. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/short_circuit.tl +0 -0
  59. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/base/with.tl +0 -0
  60. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/async.tl +0 -0
  61. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/aug_assign.tl +0 -0
  62. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/coal.tl +0 -0
  63. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/env.tl +0 -0
  64. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/imports.tl +0 -0
  65. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/iterables.tl +0 -0
  66. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/list.tl +0 -0
  67. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/memo.tl +0 -0
  68. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/record.tl +0 -0
  69. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/result.tl +0 -0
  70. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/slice.tl +0 -0
  71. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/try.tl +0 -0
  72. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/prelude/virtual.tl +0 -0
  73. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/util/__init__.py +0 -0
  74. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/util/module0.tl +0 -0
  75. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/util/module1.tl +0 -0
  76. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/e2e/util/module2.tl +0 -0
  77. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/parse/arith.tl +0 -0
  78. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/parse/assign.tl +0 -0
  79. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/parse/block-comments.tl +0 -0
  80. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/parse/deco.tl +0 -0
  81. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/parse/func.tl +0 -0
  82. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/parse/matches.tl +0 -0
  83. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/test_e2e.py +0 -0
  84. {koatl-0.1.39 → koatl-0.1.40}/koatl/tests/test_parse.py +0 -0
  85. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/Cargo.toml +0 -0
  86. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/parser/Cargo.toml +0 -0
  87. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/parser/src/ast.rs +0 -0
  88. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/parser/src/lexer.rs +0 -0
  89. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/parser/src/lib.rs +0 -0
  90. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/parser/src/parser.rs +0 -0
  91. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/parser/src/util.rs +0 -0
  92. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/inference.rs +0 -0
  93. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/lib.rs +0 -0
  94. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/main.rs +0 -0
  95. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/parse_timer.rs +0 -0
  96. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/parser.rs +0 -0
  97. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/py/ast.rs +0 -0
  98. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/py/emit.rs +0 -0
  99. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/py/mod.rs +0 -0
  100. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/py/util.rs +0 -0
  101. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/resolve_scopes.rs +0 -0
  102. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/transform.rs +0 -0
  103. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/types.rs +0 -0
  104. {koatl-0.1.39 → koatl-0.1.40}/koatl-core/src/util.rs +0 -0
  105. {koatl-0.1.39 → koatl-0.1.40}/pyproject.toml +0 -0
  106. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/__init__.py +0 -0
  107. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/__main__.py +0 -0
  108. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/cli.py +0 -0
  109. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/notebook/__init__.py +0 -0
  110. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/notebook/magic.py +0 -0
  111. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/prelude/__init__.tl +0 -0
  112. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/runtime/__init__.py +0 -0
  113. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/runtime/meta_finder.py +0 -0
  114. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/runtime/vattr.py +0 -0
  115. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/alg/__init__.tl +0 -0
  116. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/alg/async.tl +0 -0
  117. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/alg/base.tl +0 -0
  118. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/alg/do.tl +0 -0
  119. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/alg/env.tl +0 -0
  120. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/alg/memo.tl +0 -0
  121. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/alg/result.tl +0 -0
  122. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/data/__init__.tl +0 -0
  123. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/data/list.tl +0 -0
  124. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/data/record.tl +0 -0
  125. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/ext.tl +0 -0
  126. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/io.tl +0 -0
  127. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/iter.tl +0 -0
  128. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/re.tl +0 -0
  129. {koatl-0.1.39 → koatl-0.1.40}/python/koatl/std/trait.py +0 -0
@@ -99,7 +99,7 @@ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
99
99
 
100
100
  [[package]]
101
101
  name = "koatl"
102
- version = "0.1.39"
102
+ version = "0.1.40"
103
103
  dependencies = [
104
104
  "ariadne",
105
105
  "koatl-core",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: koatl
3
- Version: 0.1.39
3
+ Version: 0.1.40
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "koatl"
3
- version = "0.1.39"
3
+ version = "0.1.40"
4
4
  edition = "2021"
5
5
 
6
6
  [lib]
@@ -19,9 +19,6 @@ class Record:
19
19
 
20
20
  @classmethod
21
21
  def from_dict_ref(cls, dict_obj):
22
- if not isinstance(dict_obj, dict):
23
- raise TypeError("Expected a dictionary")
24
-
25
22
  self = cls.__new__(cls)
26
23
  self.__dict__ = dict_obj
27
24
  return self
@@ -3,14 +3,14 @@ import collections
3
3
 
4
4
  export LazyModule = class:
5
5
  __init__ = (self, name) =>
6
- self._name = name
7
- self._module = None
8
- self._submodules = {}
6
+ self.__dict__["_name"] = name
7
+ self.__dict__["_module"] = None
8
+ self.__dict__["_submodules"] = {}
9
9
 
10
10
  __getattr__ = (self, attr) =>
11
11
  try:
12
12
  if self._module === None:
13
- self._module = importlib.import_module(self._name)
13
+ self.__dict__["_module"] = importlib.import_module(self._name)
14
14
 
15
15
  if hasattr(self._module, "__path__"):
16
16
  if attr not in self._submodules:
@@ -30,6 +30,12 @@ export LazyModule = class:
30
30
 
31
31
  raise AttributeError(f"Module '{self._name}' has no attribute '{attr}'")
32
32
 
33
+ __setattr__ = (self, attr, value) =>
34
+ if self._module === None:
35
+ self.__dict__["_module"] = importlib.import_module(self._name)
36
+
37
+ setattr(self._module, attr, value)
38
+
33
39
  __repr__ = self => f"LazyModule({self._name})"
34
40
 
35
41
 
@@ -180,14 +180,23 @@ fn fast_vset_trait<'py, 'ptr>(
180
180
  }
181
181
 
182
182
  // TODO: what about conflicting traits?
183
- vtbl.get_mut(&name).unwrap().insert(
184
- 0,
185
- TraitAttr {
186
- name: trait_name.to_string(),
187
- requirements: reqs,
188
- value: value.clone().unbind(),
189
- },
190
- );
183
+ let vtbl_entry = vtbl.get_mut(&name).unwrap();
184
+ if let Some(existing) = vtbl_entry
185
+ .iter_mut()
186
+ .find(|e| e.name == trait_name.to_string())
187
+ {
188
+ existing.requirements = reqs;
189
+ existing.value = value.clone().unbind();
190
+ } else {
191
+ vtbl_entry.insert(
192
+ 0,
193
+ TraitAttr {
194
+ name: trait_name.to_string(),
195
+ requirements: reqs,
196
+ value: value.clone().unbind(),
197
+ },
198
+ );
199
+ }
191
200
 
192
201
  Ok(())
193
202
  }
@@ -19,9 +19,6 @@ class Record:
19
19
 
20
20
  @classmethod
21
21
  def from_dict_ref(cls, dict_obj):
22
- if not isinstance(dict_obj, dict):
23
- raise TypeError("Expected a dictionary")
24
-
25
22
  self = cls.__new__(cls)
26
23
  self.__dict__ = dict_obj
27
24
  return self
@@ -3,14 +3,14 @@ import collections
3
3
 
4
4
  export LazyModule = class:
5
5
  __init__ = (self, name) =>
6
- self._name = name
7
- self._module = None
8
- self._submodules = {}
6
+ self.__dict__["_name"] = name
7
+ self.__dict__["_module"] = None
8
+ self.__dict__["_submodules"] = {}
9
9
 
10
10
  __getattr__ = (self, attr) =>
11
11
  try:
12
12
  if self._module === None:
13
- self._module = importlib.import_module(self._name)
13
+ self.__dict__["_module"] = importlib.import_module(self._name)
14
14
 
15
15
  if hasattr(self._module, "__path__"):
16
16
  if attr not in self._submodules:
@@ -30,6 +30,12 @@ export LazyModule = class:
30
30
 
31
31
  raise AttributeError(f"Module '{self._name}' has no attribute '{attr}'")
32
32
 
33
+ __setattr__ = (self, attr, value) =>
34
+ if self._module === None:
35
+ self.__dict__["_module"] = importlib.import_module(self._name)
36
+
37
+ setattr(self._module, attr, value)
38
+
33
39
  __repr__ = self => f"LazyModule({self._name})"
34
40
 
35
41
 
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
File without changes
File without changes
File without changes
File without changes
File without changes