-
While Python does not require strict typing and while strict typing is useful in certain instances, there are some instances within `forecasttool-py` where the author's strict-typing approaches are ov…
-
Hey @mattmoor and @n3wscott, let's do this!
Ref:
1) Extending Knative for Fun and Profit - Matt Moore & Ville Aikas
https://www.youtube.com/watch?v=Mb8c5SP-Sw0&t=319s
2) Polymorphic Reconciler…
-
Something similar to this would allow us to still have custom types for users, but still have simplicity in replication.
```
interface Qux {
foo : string;
}
def baz(a : Qux){
return a.foo;
}
`…
-
This is a (p)repost from https://github.com/python/mypy/issues/18184, which also applies here:
The false negative can be reproduced with:
```py
from collections.abc import Sequence
from typing…
-
Following on from my response here...
http://forum.world.st/Question-tp4939264p4939265.html
I propose a small subsection "Duck Typing" with an example like below.
I don't see anywhere in PBE that…
-
# Background
UCO has implemented Duck Typing for already a long time by application of the facet pattern. As indicated by the [UCO Design Document](https://unifiedcyberontology.org/resources/uc…
plbt5 updated
2 years ago
-
**Is your feature request related to a problem? Please describe.**
In order to improve flexibility and composability over inheritance it would be beneficial to improve the design using static duck ty…
-
The spec seems to imply that `xp.finfo(xp.float32).eps` is a python float, but numpy and jax.numpy use numpy scalars instead
```
In [1]: import torch
In [2]: torch.finfo(torch.float32).eps
Out…
-
### Describe the bug
If you share a store setter from an iframe to its parent and call it via the parent, objects assigned to the store via this method, will not be reactive.
### Your Example We…
-
When JAX variables are used without `.value` with jit, gradient and other transformation it leads to error `TypeError: Value Traced with type is not a valid JAX type`
This is a recent regression cau…