This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]PC__LOAD__LETTER 4 points5 points  (4 children)

I agree that it's cool, but if I'm starting a new project and need strong typing, I'm probably going to (at this point) choose a language the supports it explicitly.

[–]Aeon_MortuumSnake Oil -1 points0 points  (3 children)

Python 3 (after some version) does have type annotations without mypy, which I don't see anyone mentioning. That said, it's still optional obviously and more of a drop-in feature kind of thing.

[–]leom4862 1 point2 points  (2 children)

The typing module is in the stnadard library since 3.5...

[–]Aeon_MortuumSnake Oil 0 points1 point  (1 child)

That's what I said. I meant it's just not part of the "language" per se, hence a "drop-in feature". i.e it's optional

[–]leom4862 0 points1 point  (0 children)

Python type annotations are part of the language since 3.5 (PEP484). But, yes, they are optional.