Sylvain Marié
Sylvain Marié
Ideally such a method would provide parameters to specify if the caller wishes to * only look at subclasses with the same status (subclasses with exactly the same response to...
```python from pytypes import typechecked from inspect import signature class Foo: def __init__(self, foo: str = 'hello'): self.foo = foo s = signature(Foo.__init__) print(s.parameters) # > OrderedDict([('self', ), ('foo', )])...
Hi there, thanks for this cool application ! For an internal ontology documentation, I have recently used [`pylode`](https://github.com/RDFLib/pyLODE) to generate a static documentation web page, looking like [this](https://raw.githack.com/RDFLib/pyLODE/master/pylode/examples/agrif.html). The lib...
See https://github.com/data-centric-ai/dcbench/blob/main/CITATION.cff
See https://github.com/smarie/pytest-patterns/
`@pytest.mark.parametrize("a", [0, 2], ids=["Null", "Positive"])` could become `@parametrize("a", dict(Null=0, Positive=2)`
same as https://github.com/smarie/python-decopatch/issues/29 : when this is fixed https://github.com/tylerwince/flake8-bandit/issues/21
Currently if we wish to perform some setup/teardown activity on a particular case, we have to create a distinct fixture to do so and reference it in the case. Generator...
Since this feature is now available : https://nox.thea.codes/en/stable/config.html#parametrizing-the-session-python We can now get rid of my hack to reach the same feature (the ENVS dict passed to the `envs` argument in...