Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: mypy, type aliases and type variables
Post: mypy, type aliases and type variables

I'm not sure, whether it's a good place to ask such question. If it's not, please tell me, where it suits better. I use Python 3.11/3.12, and mypy 1.6.0. Here's the code: from typing import TypeVar...
tomciodev General Coding Help 1 750 Oct-18-2023, 07:34 AM
    Thread: mypy unable to analyse types of tuple elements in a list comprehension
Post: RE: mypy unable to analyse types of tuple elements...

OK, I have found a solution. The cause of problem is in the return line of this function: def findAllByInt(values : Tuples, ref : int) -> Tuples: return [v for v in values if v[1] == ref] # he...
tomciodev General Coding Help 1 517 Oct-17-2023, 09:46 AM
  Question Thread: mypy unable to analyse types of tuple elements in a list comprehension
Post: mypy unable to analyse types of tuple elements in ...

All presented code samples were tested with Python 3.11, and mypy 1.6.0. And the problem is: mypy sees no problems in the following code: MyTupleType = tuple[int, str, bool] Tuples = list[MyTupleTyp...
tomciodev General Coding Help 1 517 Oct-17-2023, 09:27 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020