jamesohortle

Results 6 comments of jamesohortle

Had another look, if we use `juman = Juman()` then we get `"test`.

> Begin the review process for the merge. > > **TODO**: > > * Makes types more restrictive (remove all `Any` from .pyi and .py files, determine if types `InitDict`...

Since `None` is structurally important, it may be worthwhile to invest in the following idea. Idea: - Create a new complex type via a class that represents an emission sequence...

Idea: - Write `from numbers import Real` and use `Real` as the type of the values in the sequences (avoids use of `Numeric = Union[int, float]`? However: [PEP484](https://www.python.org/dev/peps/pep-0484/#the-numeric-tower) and python/mypy#3186......

Idea: (EDIT: This is Python >=3.8 only 😭) - `from typing_extensions import Final, final` (`final` is decorator; use above "`static`" functions, classes that should not be inherited from, etc), `Final`...

Is there an issue for `Sequence`s of fixed length that I can watch for developments? I am also having the same issues and can see a few use cases (e.g.,...