ovld 0.5.5__py3-none-any.whl → 0.5.7__py3-none-any.whl

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.
ovld/core.py CHANGED
@@ -45,6 +45,7 @@ def bootstrap_dispatch(ov, name):
45
45
  dispatch.register = ov.register
46
46
  dispatch.resolve_for_values = ov.resolve_for_values
47
47
  dispatch.resolve = ov.resolve
48
+ dispatch.resolve_all = ov.resolve_all
48
49
  dispatch.copy = ov.copy
49
50
  dispatch.variant = ov.variant
50
51
  dispatch.display_methods = ov.display_methods
@@ -250,6 +251,11 @@ class Ovld:
250
251
  else:
251
252
  return self.map[args]
252
253
 
254
+ def resolve_all(self, *args, **kwargs):
255
+ """Yield all methods that match the arguments, in priority order."""
256
+ self.ensure_compiled()
257
+ return self.map.resolve_all(*args, **kwargs)
258
+
253
259
  def register_signature(self, sig, orig_fn):
254
260
  """Register a function for the given signature."""
255
261
  fn = adapt_function(orig_fn, self, f"{self.__name__}[{sigstring(sig.types)}]")
ovld/dependent.py CHANGED
@@ -15,22 +15,15 @@ from .types import (
15
15
  Intersection,
16
16
  Order,
17
17
  clsstring,
18
- get_args,
19
18
  normalize_type,
20
19
  subclasscheck,
21
20
  typeorder,
22
21
  )
23
22
 
24
23
 
25
- def is_dependent(t):
26
- if isinstance(t, DependentType):
27
- return True
28
- elif any(is_dependent(subt) for subt in get_args(t)):
29
- return True
30
- return False
31
-
32
-
33
24
  class DependentType(type):
25
+ __dependent__ = True
26
+
34
27
  exclusive_type = False
35
28
  keyable_type = False
36
29
  bound_is_name = False
ovld/mro.py CHANGED
@@ -3,7 +3,7 @@ from enum import Enum
3
3
  from graphlib import TopologicalSorter
4
4
  from typing import get_args, get_origin
5
5
 
6
- from .utils import UnionTypes
6
+ from .utils import UnionTypes, is_dependent
7
7
 
8
8
 
9
9
  class Order(Enum):
@@ -123,6 +123,11 @@ def subclasscheck(t1, t2):
123
123
  ):
124
124
  return result
125
125
 
126
+ if is_dependent(t2):
127
+ # t2's instancecheck could return anything, and unless it defines
128
+ # __is_supertype__ or __is_subtype__ the bound devolves to object
129
+ return True
130
+
126
131
  if t2 in UnionTypes:
127
132
  return isinstance(t1, t2)
128
133
 
ovld/recode.py CHANGED
@@ -12,7 +12,7 @@ from .codegen import (
12
12
  rename_function,
13
13
  transfer_function,
14
14
  )
15
- from .utils import MISSING, NameDatabase, SpecialForm, UsageError, subtler_type
15
+ from .utils import MISSING, NameDatabase, SpecialForm, UsageError, is_dependent, subtler_type
16
16
 
17
17
  recurse = SpecialForm("recurse")
18
18
  call_next = SpecialForm("call_next")
@@ -160,8 +160,6 @@ def generate_dispatch(ov, arganal):
160
160
 
161
161
 
162
162
  def generate_dependent_dispatch(tup, handlers, next_call, slf, name, err, nerr):
163
- from .dependent import is_dependent
164
-
165
163
  def to_dict(tup):
166
164
  return dict(
167
165
  entry if isinstance(entry, tuple) else (i, entry) for i, entry in enumerate(tup)
ovld/typemap.py CHANGED
@@ -1,12 +1,13 @@
1
1
  import inspect
2
2
  import math
3
3
  from dataclasses import dataclass
4
+ from functools import partial
4
5
  from itertools import count
5
6
  from types import CodeType
6
7
 
7
8
  from .mro import sort_types
8
9
  from .recode import generate_dependent_dispatch
9
- from .utils import MISSING, CodegenInProgress, subtler_type
10
+ from .utils import MISSING, CodegenInProgress, is_dependent, subtler_type
10
11
 
11
12
 
12
13
  class TypeMap(dict):
@@ -213,8 +214,6 @@ class MultiTypeMap(dict):
213
214
  sig: A Signature object.
214
215
  handler: A function to handle the tuple.
215
216
  """
216
- from .dependent import is_dependent
217
-
218
217
  self.clear()
219
218
 
220
219
  obj_t_tup = sig.types
@@ -250,9 +249,7 @@ class MultiTypeMap(dict):
250
249
  co = h.__code__
251
250
  print(f"{'':{width - 2}} @ {co.co_filename}:{co.co_firstlineno}")
252
251
 
253
- def display_resolution(self, *args, **kwargs):
254
- from .dependent import is_dependent
255
-
252
+ def _resolve_all_helper(self, *args, **kwargs):
256
253
  def dependent_match(tup, args):
257
254
  for t, a in zip(tup, args):
258
255
  if isinstance(t, tuple):
@@ -262,21 +259,35 @@ class MultiTypeMap(dict):
262
259
  return False
263
260
  return True
264
261
 
265
- message = "No method will be called."
266
262
  argt = [
267
263
  *map(subtler_type, args),
268
264
  *[(k, subtler_type(v)) for k, v in kwargs.items()],
269
265
  ]
270
- finished = False
271
- rank = 1
272
266
  for grp in self.mro(tuple(argt)):
273
- grp.sort(key=lambda x: x.handler.__name__)
274
- match = [
275
- dependent_match(self.type_tuples[c.base_handler], [*args, *kwargs.items()])
267
+ yield [
268
+ (
269
+ c,
270
+ dependent_match(
271
+ self.type_tuples[c.base_handler], [*args, *kwargs.items()]
272
+ ),
273
+ )
276
274
  for c in grp
277
275
  ]
278
- ambiguous = len([m for m in match if m]) > 1
279
- for m, c in zip(match, grp):
276
+
277
+ def resolve_all(self, *args, **kwargs):
278
+ for grp in self._resolve_all_helper(*args, **kwargs):
279
+ for c, m in grp:
280
+ if m:
281
+ yield partial(c.handler, *args, **kwargs)
282
+
283
+ def display_resolution(self, *args, **kwargs):
284
+ message = "No method will be called."
285
+ finished = False
286
+ rank = 1
287
+ for grp in self._resolve_all_helper(*args, **kwargs):
288
+ grp.sort(key=lambda x: x[0].handler.__name__)
289
+ ambiguous = len([m for _, m in grp if m]) > 1
290
+ for c, m in grp:
280
291
  handler = c.handler
281
292
  color = "\033[0m"
282
293
  if finished:
ovld/types.py CHANGED
@@ -10,14 +10,9 @@ from .codegen import Code
10
10
  from .mro import Order, TypeRelationship, subclasscheck, typeorder
11
11
  from .recode import generate_checking_code
12
12
  from .typemap import TypeMap
13
- from .utils import UnionType, UnionTypes, UsageError, clsstring
13
+ from .utils import UnionType, UnionTypes, UsageError, clsstring, get_args
14
14
 
15
-
16
- def get_args(tp):
17
- args = getattr(tp, "__args__", None)
18
- if not isinstance(args, tuple):
19
- args = ()
20
- return args
15
+ NoneType = type(None)
21
16
 
22
17
 
23
18
  def eval_annotation(t, ctx, locals, catch=False):
@@ -90,6 +85,8 @@ class TypeNormalizer:
90
85
  raise UsageError(
91
86
  f"Dependent type {t} has not been given a type bound. Please use Dependent[<bound>, {t}] instead."
92
87
  )
88
+ elif t is None:
89
+ return NoneType
93
90
  else:
94
91
  return t
95
92
 
@@ -103,6 +100,8 @@ def _(self, t, fn):
103
100
 
104
101
 
105
102
  class MetaMC(type):
103
+ __dependent__ = False
104
+
106
105
  def __new__(T, name, handler):
107
106
  return super().__new__(T, name, (), {"_handler": handler})
108
107
 
ovld/utils.py CHANGED
@@ -4,6 +4,7 @@ import builtins
4
4
  import functools
5
5
  import re
6
6
  import typing
7
+ from abc import ABCMeta
7
8
  from itertools import count
8
9
 
9
10
  _builtins_dict = vars(builtins)
@@ -183,3 +184,31 @@ class NameDatabase:
183
184
  return name
184
185
 
185
186
  __getitem__ = get
187
+
188
+
189
+ def get_args(tp):
190
+ args = getattr(tp, "__args__", None)
191
+ if not isinstance(args, tuple):
192
+ args = ()
193
+ return args
194
+
195
+
196
+ _standard_instancechecks = {
197
+ type.__instancecheck__,
198
+ GenericAlias.__instancecheck__,
199
+ type(list[object]).__instancecheck__,
200
+ ABCMeta.__instancecheck__,
201
+ type(typing.Protocol).__instancecheck__,
202
+ }
203
+
204
+
205
+ def is_dependent(t):
206
+ if any(is_dependent(subt) for subt in get_args(t)):
207
+ return True
208
+ elif hasattr(t, "__dependent__"):
209
+ return t.__dependent__
210
+ elif not isinstance(t, type):
211
+ return False
212
+ elif type(t).__instancecheck__ not in _standard_instancechecks:
213
+ return True
214
+ return False
ovld/version.py CHANGED
@@ -1 +1 @@
1
- version = "0.5.5"
1
+ version = "0.5.7"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ovld
3
- Version: 0.5.5
3
+ Version: 0.5.7
4
4
  Summary: Overloading Python functions
5
5
  Project-URL: Homepage, https://ovld.readthedocs.io/en/latest/
6
6
  Project-URL: Documentation, https://ovld.readthedocs.io/en/latest/
@@ -22,13 +22,53 @@ With ovld, you can write a version of the same function for every type signature
22
22
 
23
23
  * ⚡️ **[Fast](https://ovld.readthedocs.io/en/latest/compare/#results):** ovld is the fastest multiple dispatch library around, by some margin.
24
24
  * 🚀 [**Variants**](https://ovld.readthedocs.io/en/latest/usage/#variants), [**mixins**](https://ovld.readthedocs.io/en/latest/usage/#mixins) and [**medleys**](https://ovld.readthedocs.io/en/latest/medley) of functions and methods.
25
- * 🦄 **[Dependent types](https://ovld.readthedocs.io/en/latest/dependent/):** Overloaded functions can depend on more than argument types: they can depend on actual values.
25
+ * 🦄 **[Value-based dispatch](https://ovld.readthedocs.io/en/latest/dependent/):** Overloaded functions can depend on more than argument types: they can depend on actual values.
26
26
  * 🔑 **[Extensive](https://ovld.readthedocs.io/en/latest/usage/#keyword-arguments):** Dispatch on functions, methods, positional arguments and even keyword arguments (with some restrictions).
27
27
  * ⚙️ **[Codegen](https://ovld.readthedocs.io/en/latest/codegen/):** (Experimental) For advanced use cases, you can generate custom code for overloads.
28
28
 
29
+ Install with `pip install ovld`
30
+
31
+
29
32
  ## Example
30
33
 
31
- Here's a function that recursively adds lists, tuples and dictionaries:
34
+ Define one version of your function for each type signature you want to support. `ovld` supports all basic types, plus literals and value-dependent types such as `Regexp`.
35
+
36
+ ```python
37
+ from ovld import ovld
38
+ from ovld.dependent import Regexp
39
+ from typing import Literal
40
+
41
+ @ovld
42
+ def f(x: str):
43
+ return f"The string {x!r}"
44
+
45
+ @ovld
46
+ def f(x: int):
47
+ return f"The number {x}"
48
+
49
+ @ovld
50
+ def f(x: int, y: int):
51
+ return "Two numbers!"
52
+
53
+ @ovld
54
+ def f(x: Literal[0]):
55
+ return "zero"
56
+
57
+ @ovld
58
+ def f(x: Regexp[r"^X"]):
59
+ return "A string that starts with X"
60
+
61
+ assert f("hello") == "The string 'hello'"
62
+ assert f(3) == "The number 3"
63
+ assert f(1, 2) == "Two numbers!"
64
+ assert f(0) == "zero"
65
+ assert f("XSECRET") == "A string that starts with X"
66
+ ```
67
+
68
+
69
+ ## Recursive example
70
+
71
+ `ovld` shines particularly with recursive definitions, for example tree maps or serialization. Here we define a function that recursively adds lists of lists and integers:
32
72
 
33
73
  ```python
34
74
  from ovld import ovld, recurse
@@ -38,18 +78,19 @@ def add(x: list, y: list):
38
78
  return [recurse(a, b) for a, b in zip(x, y)]
39
79
 
40
80
  @ovld
41
- def add(x: tuple, y: tuple):
42
- return tuple(recurse(a, b) for a, b in zip(x, y))
81
+ def add(x: list, y: int):
82
+ return [recurse(a, y) for a in x]
43
83
 
44
84
  @ovld
45
- def add(x: dict, y: dict):
46
- return {k: recurse(v, y[k]) for k, v in x.items()}
85
+ def add(x: int, y: list):
86
+ return [recurse(x, a) for a in y]
47
87
 
48
88
  @ovld
49
- def add(x: object, y: object):
89
+ def add(x: int, y: int):
50
90
  return x + y
51
91
 
52
92
  assert add([1, 2], [3, 4]) == [4, 6]
93
+ assert add([1, 2, [3]], 7) == [8, 9, [10]]
53
94
  ```
54
95
 
55
96
  The `recurse` function is special: it will recursively call the current ovld object. You may ask: how is it different from simply calling `add`? The difference is that if you create a *variant* of `add`, `recurse` will automatically call the variant.
@@ -63,7 +104,7 @@ A *variant* of an `ovld` is a copy of the `ovld`, with some methods added or cha
63
104
 
64
105
  ```python
65
106
  @add.variant
66
- def mul(x: object, y: object):
107
+ def mul(x: int, y: int):
67
108
  return x * y
68
109
 
69
110
  assert mul([1, 2], [3, 4]) == [3, 8]
@@ -92,9 +133,9 @@ assert f(10) == 121
92
133
 
93
134
  Both definitions above have the same type signature, but since the first has higher priority, that is the one that will be called.
94
135
 
95
- However, that does not mean there is no way to call the second one. Indeed, when the first function calls the special function `call_next(x + 1)`, it will call the next function in the list below itself.
136
+ However, that does not mean there is no way to call the second one. Indeed, when the first function calls the special function `call_next(x + 1)`, it will call the next function in line, in order of priority and specificity.
96
137
 
97
- The pattern you see above is how you may wrap each call with some generic behavior. For instance, if you did something like that:
138
+ The pattern you see above is how you may wrap each call with some generic behavior. For instance, if you did something like this:
98
139
 
99
140
  ```python
100
141
  @f.variant(priority=1000)
@@ -103,12 +144,12 @@ def f2(x: object)
103
144
  return call_next(x)
104
145
  ```
105
146
 
106
- You would effectively be creating a clone of `f` that traces every call.
147
+ The above is effectively a clone of `f` that traces every call. Useful for debugging.
107
148
 
108
149
 
109
150
  ## Dependent types
110
151
 
111
- A dependent type is a type that depends on a value. `ovld` supports this, either through `Literal[value]` or `Dependent[bound, check]`. For example, this definition of factorial:
152
+ A dependent type is a type that depends on a value. This enables dispatching based on the actual value of an argument. The simplest example of a dependent type is `typing.Literal[value]`, which matches one single value. `ovld` also supports `Dependent[bound, check]` for arbitrary checks. For example, this definition of factorial:
112
153
 
113
154
  ```python
114
155
  from typing import Literal
@@ -0,0 +1,18 @@
1
+ ovld/__init__.py,sha256=JuCM8Sj65gobV0KYyLr95cSI23Pi6RYZ7X3_F3fdsSw,1821
2
+ ovld/abc.py,sha256=4qpZyYwI8dWgY1Oiv5FhdKg2uzNcyWxIpGmGJVcjXrs,1177
3
+ ovld/codegen.py,sha256=27tmamlanuTPDT-x31ISyqP0wGKW9BCFZJGVyq9qLg8,9728
4
+ ovld/core.py,sha256=WqZ1lvcAGSri02XZeY73Bj5AKB9RYBCAvHLbyns8u68,17792
5
+ ovld/dependent.py,sha256=JIgsc_5ddPH51_2IrZ6JW6bWE5RyrrrOwR2e9UvDhZ4,8922
6
+ ovld/medley.py,sha256=0fseIntzJRCPYXq-tmnxgy5ipNa4ZxR0D_6So0xstdQ,12729
7
+ ovld/mro.py,sha256=Aw1r5Zz7V9cVBDwWzQ-WNnbpBwoGztgbw3wLAyS6Y60,4863
8
+ ovld/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ ovld/recode.py,sha256=vXg9XLExp_9LdAHO0JWR4wvwHhpOLu2Xcrg9ZYg1nms,16407
10
+ ovld/signatures.py,sha256=Q8JucSOun0ESGx14aWtHtBzLEiM6FxY5HP3imyqXoDo,8984
11
+ ovld/typemap.py,sha256=wkLuCc6xa2VZJOMaAhuYYgnNrywhovkQwbkBnoRfCsY,13985
12
+ ovld/types.py,sha256=CRL6Vuzg5moXgAAhIj2698GvZoyF4HWbUDYz2hKt6us,13373
13
+ ovld/utils.py,sha256=cyy9pcuMhmo1_UdPonH9JT6B9QlI4oH6_JK89cM3_gk,5046
14
+ ovld/version.py,sha256=06EkKCZh0our2EHc5Ssv0FmkpTsQ75viNNVyU74k-Zg,18
15
+ ovld-0.5.7.dist-info/METADATA,sha256=8kgc5SptJGDMMR4twLX9cB88rnMMC-GvuUn2Z8mCmgE,10458
16
+ ovld-0.5.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
17
+ ovld-0.5.7.dist-info/licenses/LICENSE,sha256=cSwNTIzd1cbI89xt3PeZZYJP2y3j8Zus4bXgo4svpX8,1066
18
+ ovld-0.5.7.dist-info/RECORD,,
@@ -1,18 +0,0 @@
1
- ovld/__init__.py,sha256=JuCM8Sj65gobV0KYyLr95cSI23Pi6RYZ7X3_F3fdsSw,1821
2
- ovld/abc.py,sha256=4qpZyYwI8dWgY1Oiv5FhdKg2uzNcyWxIpGmGJVcjXrs,1177
3
- ovld/codegen.py,sha256=27tmamlanuTPDT-x31ISyqP0wGKW9BCFZJGVyq9qLg8,9728
4
- ovld/core.py,sha256=HEREHblKcjM9dhFBr0FNwUCyec7o-9XjCsCfJ23SnNw,17544
5
- ovld/dependent.py,sha256=h3j4oQYTQfGqMzggWlLV6TpojX_GtYRFWAO0GcMB0Zs,9085
6
- ovld/medley.py,sha256=0fseIntzJRCPYXq-tmnxgy5ipNa4ZxR0D_6So0xstdQ,12729
7
- ovld/mro.py,sha256=LXHkP_28J9EwM9IrXYraYI0qm4dHWkDKCgkXn0u_YCo,4655
8
- ovld/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- ovld/recode.py,sha256=ZVqD3sCu_myaFj3lKPCMjFBf1pTdTAAd3NJdsqtLYuU,16434
10
- ovld/signatures.py,sha256=Q8JucSOun0ESGx14aWtHtBzLEiM6FxY5HP3imyqXoDo,8984
11
- ovld/typemap.py,sha256=5Pro1Ee60fH4L7NW7k5nbN5EfDygA0LFHcI6o3mCagI,13596
12
- ovld/types.py,sha256=0hkhAR5_5793NABdrM-fP1dSJBhYof85FILKqVP2YMg,13392
13
- ovld/utils.py,sha256=fD20RWWGwI3Z8q5DvrdCPDA_Wm1uiyfCZLLL2IM9ZJw,4348
14
- ovld/version.py,sha256=v9c8T1qB0Dxuq0vdkPvh2bpcAlRxlK4BxHPcACDymFw,18
15
- ovld-0.5.5.dist-info/METADATA,sha256=K1dYchmA245qK_Kji4j7t-d8CTgriiem6JM_MnigdXM,9383
16
- ovld-0.5.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
17
- ovld-0.5.5.dist-info/licenses/LICENSE,sha256=cSwNTIzd1cbI89xt3PeZZYJP2y3j8Zus4bXgo4svpX8,1066
18
- ovld-0.5.5.dist-info/RECORD,,
File without changes