Yeah, it seems it's time to abandon Python since the static typing fundamentalists seem to be getting hold of it
Extremely frustrated by this decision and even though the multiple denials that it won't become a statically typed language it's clear that idea has changed
Docstrings are for modules, classes, functions and methods, not variables mixed with the code.
And "optional" is a misnomer unless you only ever touch your own code. Programming is generally a social activity, so for most of us, "optional" means just means "inconsistently required".
I don't have a philosophical objection to typing, but I'm yet to see a syntax that won't muddy Python's.
> And "optional" is a misnomer unless you only ever touch your own code. Programming is generally a social activity, so for most of us, "optional" means just means "inconsistently required".
Optionally means that it's not required or mandatory.
You don't need to use it if you don't want to. If you're working on a project and the project follows a style guide then you follow the style guide, but nothing forces your bosses to require it. The code will run anyway.
It isn't good or bad. It's an optional feature. No one is forced to use it unless they specifically want it.
Your bosses aren't forced to use it. This means that if they don't want to use them and they don't believe the official style guide has to impose them, you don't have to use them.
If your bosses decide to impose them and change teh official style guide to require type annotation then your personal taste doesn't have any say in the subject either way, and you only need to act like a professional and be a team player.
But the key issue is that no one is forced to use optional features unless they really want to.
It does seem odd that a module could be partially static. If it was optional I'd prefer to see it enabled by a different filetype (e.g. pys, heh piss).
Well, sort of. Dialyzer can do quite well if you run it on code with no
typespecs whatsoever, but if you add those, it can detect so many more
mistakes (which is the whole point of such tools).
No typespecs feels like crippling the tool, except it was designed to be as
useful as possible for old code without modifying it. It just shows how useful
the typespecs are.
Extremely frustrated by this decision and even though the multiple denials that it won't become a statically typed language it's clear that idea has changed