-
I propose to add a `@typing.sealed` class decorator that would do nothing at runtime, but indicate to static type checkers that all subclases must be defined in the same module. This will allow static…
-
# Problem
In Feast, the current On Demand Feature View executes feature transformations at read time. However, this behavior is not immediately obvious from the name "On Demand Feature View."
T…
-
According to [the doc](https://docs.python.org/3/library/http.server.html#http.server.BaseHTTPRequestHandler) you should use `BaseHTTPRequestHandler` subclassing it and implementing various `do_SPAM` …
ZeeD updated
10 months ago
-
```py
from typing import TypeVar, final
@final
class A:
def __init__(self,value: str) -> None: ...
@final
class B:
def __init__(self,value: int) -> None: ...
T = TypeVar("T", A,…
-
Replace the sage custom sage_wrap and decorator_defaults methods by the well-maintained decorator library https://github.com/micheles/decorator.
My motivation is to replace sage's autodoc sphinx ex…
-
Using `@` as alternative to `__xonsh__` makes commands more short and elegant:
```bash
@.env # instead of `__xonsh__.env` and forget about `${...}`
@.history …
-
If we can get this to type check properly, we would have perfect support for boilerplate-free mixins:
``` typescript
declare function Blah(target: T): T & {foo: number}
@Blah
class Foo {
bar() {…
-
**Bug Report**
It seems that Mypy is not enjoying `pyqtProperty` setters. Someone already asked on the [Qt mailing-list](http://python.6.x6.nabble.com/Reconciling-pyqtProperty-and-mypy-td5279775.ht…
-
The wrapped method in `service.method()` (service.py line 91) does not return the value from the original method. This is confusing and limits the utility of the interface.
conciser the following:
…
-
### Is your feature request related to a problem? Please describe
When configuring storybook addons, a lot of the control options exist in the parameters property. For example, parameters.actions.arg…