Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

165
Visualizações
Does a "with" statement support type hinting?

Can you define the type hint for a variable defined with the with syntax?

with example() as x:
    print(x)

I would like to type hint the above to say that x is a str (as an example).

The only work around that I've found is to use an intermediate variable, but this feels hacky.

with example() as x:
    y: str = x
    print(y)

I can't find an example in the typing documentation.

over 4 years ago · Santiago Trujillo
2 Respostas
Responde à pergunta

0

Usually type annotations are placed at the API boundaries. In this case the type should be inferred from example.__enter__. In case that function doesn't declare any types, the solution is to create a corresponding stub file in order to help the type checker infer that type.

Specifically this means creating a .pyi file with the same stem as the module from which Example was imported. Then the following code can be added:

class Example:
    def __enter__(self) -> str: ...
    def __exit__(self, exc_type, exc_value, exc_traceback) -> None: ...
over 4 years ago · Santiago Trujillo Relatório

0

PEP 526, which has been implemented in Python 3.6, allows you to annotate variables. You can use, for example,

x: str
with example() as x:
    [...]

or

with example() as x:
    x: str
    [...]
over 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda