Type interference: `ProtocolOf`?
Personne n'a encore pris cette issue.
- Langage dominant
- Python
- Étoiles
- 1.8k
- Forks
- 302
- Merge moyen
- 23 h
- PR mergées (30 j)
- 8
Description
I'm looking the way to interfere existing types explicitly, like typeof / keyof in Typescript
I have 2 use cases:
- existing function definition ->
Callable[...] - dataclass
__init__signature / protocol
I think it should look like:
from typing import ProtocolOf
def foo(a: int, b: float) -> float:
return a * b
FooProtocol = ProtocolOf[foo]
Should be equal to:
class FooProtocol(Protocol):
def __call__(a: int, b: float) -> float: ...
Or dataclasses:
from dataclasses import dataclass
from typing import ProtocolOf
@dataclass()
class Foo:
a: int
b: float
Here I'm not sure which way is better
# way 1:
FooProtocol = ProtocolOf[Foo]
Should be equal to:
class FooProtocol(Protocol):
def __call__(a: int, b: float) -> Foo: ...
# way 2:
FooInitProtocol = ProtocolOf["Foo.__init__"]
Should be equal to:
class FooInitProtocol(Protocol):
def __call__(a: int, b: float) -> None: ...
Callable / Protocol to ParamSpec / Returning to use in typing
I see typing.get_args but it doesn't looks suitable for typing. Also
from collections.abc import Callable
from typing import get_args
FooSignature = Callable[[int, float], float]
get_args(FooSignature) # == [[int, float], float]
Instead of that it should be way to define FooParamSpec / FooReturning
Bonus
there are no way to convert TypedDict to ParamSpec.kwargs
UPD: is't bound to typing.Unpack
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Par où commencer
- Lisez l'issue en entier, puis le guide de contribution du projet.
- Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
- Forkez le dépôt et travaillez sur une branche.
- Ouvrez une pull request qui référence le numéro de l'issue.
Piste de recherche
Commencez par examiner les exemples de l’issue ainsi que les APIs typing.get_args, Callable, Protocol, ParamSpec, TypedDict, Unpack et dataclasses qui y sont référencées. L’issue ne mentionne aucun fichier du dépôt ni aucun test ; sa réalisation nécessiterait d’abord une conception ciblée et validée de la fonctionnalité typing proposée, avant de pouvoir définir le périmètre de l’implémentation.
Rédigé par le modèle d'indexation à partir du texte de l'issue.
Évaluation
- Stack technique
- python
- Domaine
- tooling
- Type d'issue
- Fonctionnalité
- Difficulté
- 5/5
- Temps estimé
- Plus d'une semaine
- Activité
- À l'abandon
- Clarté
- À clarifier
- Accessibilité débutants
- 25/100