“typing” is getting deprecated in Python

  Рет қаралды 80,099

Indently

Indently

Күн бұрын

Пікірлер: 211
@kudorgyozo
@kudorgyozo 4 ай бұрын
I think typing shouldn't be deprecated because I usually use my hands and a keyboard to type in my code.
@zarifatai
@zarifatai 4 ай бұрын
This video is rather misleading. The `typing` module is not getting deprecated. Many aliases, like the ones shown in the video, are deprecated since Python 3.9. Types such as `Any`, `Self`, `Optional`, `Literal`, and more are still accessed through the `typing` module.
@georgplaz
@georgplaz 4 ай бұрын
yea. I feel like we have a revival of super clickbaity titles. The titles are often flat out wrong and you only realize that half way into the video
@ilya238
@ilya238 4 ай бұрын
Wait, so now we have to use 2 modules for typing?!
@4ngelf
@4ngelf 3 ай бұрын
@ilya238 No, just use what you like. They are aliases to the real module anyway.
@snoupix3332
@snoupix3332 3 ай бұрын
I still think it's a bad idea to mark a function deprecated and silently alias it to the replacement. It leads to terrible UX/habits because the LS cannot tell you that you're having a bad practice by using the deprecated version.. And even for backward compatibility, having a warning when using a deprecated alias isn't a lot to ask.
@dadanny661
@dadanny661 3 ай бұрын
Actually instead of writing Optional[str], you should rather write str | None But I agree with you otherwise
@eddie_dane
@eddie_dane 4 ай бұрын
Now I have to type an extra dot in my imports, with everything going on in the world, I have to deal with too!?
@Indently
@Indently 4 ай бұрын
I've never related to a comment so much as this one.
@Oler-yx7xj
@Oler-yx7xj 4 ай бұрын
For lists, dicts and sets, you don't even need to import anything, so there is some good to it
@JordanHaisley
@JordanHaisley 4 ай бұрын
It’s 9 extra chars though!
@dantemendez3743
@dantemendez3743 4 ай бұрын
​@@Oler-yx7xjThe typing/collections version allows you to also specify the type of whatever is contained inside of that list, set, dict, etc. too though (e.g. List[str] or Set[int]). So, I would stick to that for most use-cases to be even more clear on the type that's expected to go in or out of your function.
@fswerneck
@fswerneck 4 ай бұрын
​@@dantemendez3743 are you not using the most recent version? You can index the builtins now. dict[K, V] is a thing.
@veni_vidi_victorian
@veni_vidi_victorian 4 ай бұрын
The documentation and the PEP (585) do state their reason for not annotating it as deprecated. Type checking is left to type checkers, not the interpreter. Quote, "It is expected that type checkers will flag the deprecated types when the checked program targets Python 3.9 or newer." Removal is also documented: "Removal will occur no sooner than Python 3.9’s end of life, scheduled for October 2025." I think it's fair of Python to expect type checkers to do their job properly, but I also understand the confusion it might cause if the types are eventually just gone.
@cach_dies
@cach_dies 4 ай бұрын
What is the reason for not annotating as deprecated?
@Masonova1
@Masonova1 4 ай бұрын
​@@cach_diesbecause it was nobody's job. Nobody was asked to mark it as deprecated, only suggested to do so, and so it probably won't happen because the buck will keep getting passed.
@veni_vidi_victorian
@veni_vidi_victorian 4 ай бұрын
@@cach_dies Because of PEP 563, which defined/changed how annotations work, you can not have annotations on typings without impacting runtime performance of the typing system.
@stonemannerie
@stonemannerie 4 ай бұрын
To be fair: Your types are not evaluated during runtime, so python cannot give you a deprecation warning. But I guess PyCharm could have added a rule to show you this deprecation warning. ruff does so.
@4ngelf
@4ngelf 4 ай бұрын
Exactly, it is the job of the tools that analyze type annotations.
@HaganeNoGijutsushi
@HaganeNoGijutsushi 4 ай бұрын
It can give you one for merely importing the typing module.
@be1tube
@be1tube 4 ай бұрын
I found out about this from ruff
@stonemannerie
@stonemannerie 4 ай бұрын
@@HaganeNoGijutsushi but the typing module as a whole is not deprecated only the container types
@naveennamani2
@naveennamani2 4 ай бұрын
Which rule in the ruff does this?
@Carberra
@Carberra 4 ай бұрын
They've been deprecated since 3.9, but weirdly there are (currently) no concrete plans to actually remove these aliases. Even looking forward as far as 3.16 there's nothing. I think they might be "soft-deprecated" or something, as yeah Pylance doesn't mark them as deprecated either. I forget how I found out initially actually, I remember something flagged it to me, though I still use typing lmao.
@Indently
@Indently 4 ай бұрын
I love the term "soft-deprecation" (added in version 3.9)
@GiveMeSomeMeshuggah
@GiveMeSomeMeshuggah 4 ай бұрын
There are plans to remove them some time after 3.9’s end of life in 2025. And type checkers are meant to flag this deprecation when targeting 3.9+, but have failed to do so for whatever reason.
@yves-xx3nu
@yves-xx3nu 4 ай бұрын
@@GiveMeSomeMeshuggah Given that python does not do BC, I don't really believe that it will really be removed at the risk of having surprises.
@LV-1969
@LV-1969 4 ай бұрын
I am just learning python at my job. This is my "go to" channel to learn python stuff. Focused and straight to the point videos. Awesome.
@DrDeuteron
@DrDeuteron 4 ай бұрын
View any video by Raymond Hettinger (the creator of itertools), he's a great teacher, esp "super considered super" if you're doing multiple inheritance. Also the somewhat dated "Loop like a native" by Ned Batchelder...if you ever find yourself looping over indices, yeah: that needs a refactor.
@graemeholliday3201
@graemeholliday3201 4 ай бұрын
This actually makes sense when you take into account that the old capitalized types like List, Dict and Optional from typing have been replaced with more straightforward syntax. So now many programs won't need to use the typing module at all.
@GiancarloMattia
@GiancarloMattia 4 ай бұрын
I just discovered it now! Thank you very much for the info. I absolutely agree on your opinion about typing, was great to have the typing module and I also not received any warning (vscode).
@Indently
@Indently 4 ай бұрын
I always like to think that the people who work on these things put loads of energy and thought into it. I personally did not share the vision in their PEP completely. I prefer that all types remain available in the typing module because that's an incredibly intuitive place to find "types" for your code. I mean what's next? Moving all the types to their respective modules? Like next thing you know you will have to import Iterator from itertools. I'm looking forward to reading more sides and opinions to this, because as it stands, from what I've seen and read, they're just silently removing duplicates from Python.
@yorailevi6747
@yorailevi6747 4 ай бұрын
Why's callable under collections???
@talideon
@talideon 4 ай бұрын
Because you iterate over collections, one assumes.
@bloody_albatross
@bloody_albatross 4 ай бұрын
​@@talideonWhat does callable have to do with iteration?!
@MagicGonads
@MagicGonads 4 ай бұрын
technically... a callable with bound arguments is a collection because it stores the bound arguments
@bloody_albatross
@bloody_albatross 4 ай бұрын
@@MagicGonads Technically a collection is a function, because it maps indices to other values, so clearly all of this should be in functools. :P
@MagicGonads
@MagicGonads 4 ай бұрын
@@bloody_albatross collections do not map indices to values in general
@dirtcrusher95
@dirtcrusher95 4 ай бұрын
Note that not everything in the typing module is being deprecated, for example 'Literal' and 'Optional' are staying (for now).
@GiveMeSomeMeshuggah
@GiveMeSomeMeshuggah 4 ай бұрын
Those are ones that, unlike the built-in list and collections.abc.Iterable, have nothing to do with subscripting for generics and don’t have the same justification for removal.
@soupoverflow
@soupoverflow 4 ай бұрын
Except optional is the same as “type1 | None” so you should just use that instead.
@Marc-ElianBegin
@Marc-ElianBegin 4 ай бұрын
@@soupoverflow except for when you use a string to refer to your type (e.g. Singleton pattern), where afaik you need Optional.
@JackEnneking
@JackEnneking 4 ай бұрын
And NamedTuple
@soupoverflow
@soupoverflow 4 ай бұрын
@@Marc-ElianBegin isn’t it possible to use a forward reference by putting the whole thing in quotes like: “MyType | None”
@ladyravendale1
@ladyravendale1 4 ай бұрын
The title/thumbnail of this video is super misleading and frankly harmful. The parts of typing that are getting deprecated are the parts that are useless aliases, for example typing.List is now just an alias to the normal list. I think this is a very good thing, since it moves people away from having to care about the split from normal classes and typing classes. This is even more of a non issue since from future import __annotations__ exist.
@dipeshsamrawat7957
@dipeshsamrawat7957 4 ай бұрын
We're obsessed with typing module 🥺❤
@nowster
@nowster 4 ай бұрын
Also built in types (list, tuple, dict) can be used for type annotation, instead of typing.List, etc.
@Sakiut25-1804
@Sakiut25-1804 4 ай бұрын
A lot of comments already talked about the fact that it is the checkers that should display a deprecation warning and not the interpreter. However this video doesn't explain the change that occurred in Python 3.9 in itself. At least, not entirely. Type hints before 3.9 were using at the same time standard built-in Python types (like int and str) and the typing module for more complex type hints. The best example I can think of right now is "List". To type hint a list of strings you had to do something like from typing import List def foo(bar: List[str]) -> None: After 3.9, the [] notation is now available for native Python types. That's why you don't need typing anymore. So, our example above becames: def foo(bar: list[str]) -> None: Without any import and using the native list type. Same thing for collections.abc.Callable or Iterable which are the real fully-fledged Python types instead of some cluncky aliases that could only be use for type hints. I do think this was a really cool update, it simplified my code and is way less confusing than having two types for the same thing
@damymetzke514
@damymetzke514 4 ай бұрын
I was aware of all the variations, but presumed that typing was the preferred option due to it being newer and more precise of a description in my opinion. I looked into it, and the reason for this change is obvious now. When generic variations of the types in abc were introduced, they could not be applied to the type itself because of limitations in Python. Since 3.9, it became possible to apply the generic typing to the classes itself. Therefore, the use of the typing module is now obsolete. Looking into it it makes sense. But not a single editor has ever provided any indication of the deprecation. So I falsely made an assumption that the new version would be preferred. I think this is a completely reasonable assumption to make if you are not aware of the relevant context, so this should have been communicated more clearly.
@IManu96I
@IManu96I 4 ай бұрын
Thanks for the video! Most of the linters such as Ruff were warning about this deprecation long time ago
@Indently
@Indently 4 ай бұрын
Ah good to know that some linters catch this! Like it's shameful that Mypy doesn't even mention it in my opinion.
@dragweb7725
@dragweb7725 4 ай бұрын
but pylint don't do that...
@AlexandreJasmin
@AlexandreJasmin 4 ай бұрын
What’s that lint called in ruff?
@mohamednajmi9182
@mohamednajmi9182 2 ай бұрын
@@AlexandreJasminsuper linter implemented with Rust. Give it a try with pip install ruff
@RealSoulRave
@RealSoulRave 4 ай бұрын
Awesome to know! I had no idea that library even existed until I watched this video! Great info and thank you for the knowledge you bestow!
@thisoldproperty
@thisoldproperty 4 ай бұрын
I'm surprised python developers didn't put a deprecated action on the actual code to let us all know. I appreciate you bringing this to my attention. I'm erked too.
@Indently
@Indently 4 ай бұрын
It just feels so silent and sneaky, even if they gave us 5 years to prepare for this before they might remove it.
@evlezzz
@evlezzz 4 ай бұрын
Well, almost everything related to typing in python is quite chaotic and doesn't seem to have a single direction. The idea behind removing Iterable and things like that from typing is that they are not just for type hints, you could actually inherit from them and automatically receive implementation of some collection-related methods. That is runtime and not type checking. The decision to not generate DeprecationWarning is weird too. BTW, that leaves a question: what the hell is Callable doing in collections.abs? :⁠-⁠D
@kezif
@kezif 4 ай бұрын
whats wrong about callable being in the abc?
@evlezzz
@evlezzz 4 ай бұрын
@@kezif Nothing is wrong with abc. Why Callable is a collection?
@Indently
@Indently 4 ай бұрын
I'm also curious to hear why Callable is a collection ahah
@michaelcummings7246
@michaelcummings7246 4 ай бұрын
​@@IndentlyTwo things I think happened. First it didn't fit into how typing was being narrowed. Might be wrong about this since I'm still expanding my knowledge on Python but doesn't Generators get typed as Callable so can return in that way return a collection? Might also just be they knew it did fit in typing so just kicked it down the road by moving it to collections instead😉
@HaganeNoGijutsushi
@HaganeNoGijutsushi 4 ай бұрын
While it's not a replacement for Iterable since that's broader, I'd say one of the most useful things they could do is accept syntax like list[int] and dict[str, int], but alas.
@bluemaxwastaken
@bluemaxwastaken 4 ай бұрын
Congrats on 200k!! You deserve it.
@aaronvegoda1907
@aaronvegoda1907 4 ай бұрын
As far as I am aware, a type such as _collections.abc.Iterable_ is an actual, valid type, checkable at runtime with _isinstance_ . I am not sure if _typing.Iterable_ can be used to the same effect. I will admit, I'm not a huge fan, but I guess it makes sense if they are checkable at runtime to move them into more relevant modules
@victorsago
@victorsago 4 ай бұрын
This is news to me! And I agree with you: typing is such a convenient module for, well, typing. :)
@laylaxoxo5719
@laylaxoxo5719 4 ай бұрын
I also had no idea. Honestly they should have made it more explicit, not just in documentation. If it was deprecated then i personally I would have liked an error or some sort of warning from pycharm. But oh well i guess we have to read the whole documentation, from start to end to find out.
@CristianGarcia
@CristianGarcia 4 ай бұрын
What happens with Any?
@Lons_Tran
@Lons_Tran Ай бұрын
Dn't be mad, update happens and sometime we missed, we learn from each other through the internet. I' sure people have the same problem. Don'tt be so hard on yourself. Thank you for your information. I learned what typing is and will use collection instead!
@wadecurry938
@wadecurry938 4 ай бұрын
Most of the type annotation tutorials I've found describe it using older versions of Python, and then I have to hunt for what has changed and how. They are also frequently incomplete because they only explain the new features (this is fine, just not what I need). Do any of you know where I would find a complete tutorial on the topic using 3.11 at least?
@godowskygodowsky1155
@godowskygodowsky1155 4 ай бұрын
Imo just read the documentation.
@MishaTavkhelidze
@MishaTavkhelidze 4 ай бұрын
I noticed something fishy with this some time ago but was too lazy to investigate. Thank you!
@bryandata6658
@bryandata6658 4 ай бұрын
Thanks - I had missed that one as well.
@bibekjha8129
@bibekjha8129 4 ай бұрын
I just used typing callable now I learnt this from this video.
@farzadmf
@farzadmf 4 ай бұрын
Wow, didn't know that! Thanks for the video!
@qbert8695
@qbert8695 4 ай бұрын
Finally somebody realizes it! I was confused ever since 3.9 and wasn't able to find any information about typing and it becoming more and more obsolete. By now typing as a logically (in)complete module should be looked at as a messy result of overthought concepts of which language part should be responsible for type hints.
@BruceDuncan
@BruceDuncan 4 ай бұрын
Sounds like you want to make a PR for mypy...
@tek1in775
@tek1in775 4 ай бұрын
I haven't really seen this question in any previous videos, but what code editor to you use?
@ilonachan
@ilonachan 3 ай бұрын
ok so, I don't mind putting the type representative classes in the location where they're used; collection types should go in the collections module, that's just common sense. What really gets ME is that "Callable" is in collections. WHY?? That's clearly not a collection! If anything it should've gone in functools or sth!
@MarkusLobedann
@MarkusLobedann 4 ай бұрын
Ever used the 'ruff' linter? It warns about many defacto deprecations like to use 'dict' instead of 'Dict' from the typing Module.
@Indently
@Indently 4 ай бұрын
I haven't, but a few comments suggested it so I will try it
@maleldil1
@maleldil1 4 ай бұрын
If you use pyupgrade or ruff, rule UP035 will warn you to use the proper import. There are other relevant typing rules too, such as UP006 (use list[T] instead of typing.List[T]) and UP007 (use X | Y instead typing.Union[X, Y]).
@martinpayne2934
@martinpayne2934 4 ай бұрын
+1 for pyupgrade. It really helps with replacing older style type hints as well as doing other useful things.
@samhughes1747
@samhughes1747 4 ай бұрын
Oy. Single-letter package renames are disgusting. Stop it. It’s convenient for you at exactly one moment, when you’re writing it. It will be inconvenient for you and anyone else who ever has to read that dogshit, in perpetuity. Stop it. Please.
@Hofer2304
@Hofer2304 4 ай бұрын
I miss a tutorial for the type checking. On the Python website I can find a Python tutorial, but nothing about type annotations. Can I define my own types? When are two types compatible?
@fuuryuuSKK
@fuuryuuSKK 2 ай бұрын
As someone who enjoys functional programming, I am wary of the demo code you showed, because it makes the implicit assumption that you can print() the elements of the iterable, which in Haskell isn't a given. that is, in Haskell you would need to specify it as Iterable, and the elements as printable.
@bigfoot47
@bigfoot47 4 ай бұрын
If you think of it from a Java dev perspective, it makes sense that all the ...able are moved to abc. If an object is ...able, this is a behavior, and it is not implemented in Java as a strict type. Java uses interfaces for that, which is a kind of abstraction. So, moving ...able types to the "abstract base class" makes more sense than leaving them in "typing"
@yvg2009
@yvg2009 2 ай бұрын
Can you create videos explaining all the python builtin modules? 1 video per module is also fine.
@scottmiller2591
@scottmiller2591 4 ай бұрын
SOP for all deprecations. Python is complicated, and it is hard to keep up with minutia like this. Thanks for pointing the deprecation out.
@MrGeordiejon
@MrGeordiejon 2 ай бұрын
it seems that collections abc are catching up to support type annotations by allowing subscripting. Thus these 'aliases' from typing library are no longer necessary. using the from module import type method seems more maintainable than using import aliases in this case.
@nbecnbec
@nbecnbec 3 ай бұрын
I see how it's easy to miss this! How did you notice in the end?
@Indently
@Indently 3 ай бұрын
I just kept getting comments telling me that typing was deprecated and didn’t believe them until I checked.
@MichalPlichta
@MichalPlichta 4 ай бұрын
Im using python every day since 12 years... This is just fresh news to me...
@thejimmylin
@thejimmylin 4 ай бұрын
How do you replace `typing.TypedDict`?
@marckiezeender
@marckiezeender 4 ай бұрын
honestly, i think they should deprecate the entire module. Make all its features baked in to the standard library types or even to the language syntax itself
@pavfrang
@pavfrang 4 ай бұрын
Perhaps, in the future we expect a TypePython language that forces typing, which will be the equivalent of TypeScript/JavaScript. :)
@vlc-cosplayer
@vlc-cosplayer 3 ай бұрын
Please don't, the tools around TS are what made me quit learning it. Nothing seems to "just work", unless you use something like Vite or Deno. But if you do that, you won't understand how TSC works. But if you try to figure out the TS tooling you'll run into insane error messages like: "unknown file extension '.ts'" When you try to use ts-node with ESM modules. 💀
@spdlqj011
@spdlqj011 4 ай бұрын
I just use list[str] 😅
@shaunread5248
@shaunread5248 4 ай бұрын
How have you got a responsive mypy popup in pycharm? 😍
@Indently
@Indently 4 ай бұрын
If you check the plugin store it's there!
@hugoburton5222
@hugoburton5222 4 ай бұрын
I guess because Python still remains a dynamically typed language this might have something to do with it? But I don't see why this has been moved to the collections package. Is there even any difference in functionality?
@Homeworkbad
@Homeworkbad 4 ай бұрын
The PEP considered adding deprecation warnings for this but decided against it as those warnings would have a negative impact on runtime performance.
@___Q___
@___Q___ 4 ай бұрын
so everything that can be used from `typing` library can also be done with `collections.abc`? you just need to swap importing `typing` --> `collections.abc`? (for python 3.9+)
@Oler-yx7xj
@Oler-yx7xj 4 ай бұрын
tuples, lists, dicts and sets are not in `collections.abc`, they should be just subscripted as is `list[str]` and a couple of other things are also renamed
@jerril42
@jerril42 4 ай бұрын
I agree, they should have made it better known. Removing the call to typing may affect existing code, not knowing when or if makes it difficult to judge how important it is to examine existing code to make changes. Hopefully they will make it more explicit if they chose to remove the call and give sufficient time for programmers to make adjutments.
@michaelcummings7246
@michaelcummings7246 4 ай бұрын
When you run the code ALL typing is ignored anyway since it's not part of the runtime it's just there for the external type checkers to use. As far as python itself is concerned everything is just type ANY😉😂
@fedang
@fedang 4 ай бұрын
Nice video, didn't know that
@CppExpedition
@CppExpedition 4 ай бұрын
Typing was the right module name. I would continue using it
@theViceth
@theViceth 4 ай бұрын
Noticed that too. It's a bit annoying. Not gonna say it's pointless, but it feels like yet another "just use this to do this, don't ask" parts of python, which is hardly a desired approach if you want to make a beginners friendly language.
@giangngo4487
@giangngo4487 4 ай бұрын
Maintaining an open-source language is such a tough job, make a decision wrong and it's very hard to undo, we can't satisfy everyone, just try to minimize the impact of inevitable changes.
@CaioAguida
@CaioAguida 3 ай бұрын
I never understood why you'd have to import a module for getting typing in the first place.
@MrMoon-hy6pn
@MrMoon-hy6pn 3 ай бұрын
‘typing’ now ‘collections.abc’ just creates a bunch of classes that aren’t built into python. You can use type annotations without either.
@DuncanBooth
@DuncanBooth 3 ай бұрын
If you read the mypy current documentation (1.11.2) then all of the examples happily use `from typing import Iterator, Iterable, ...`. I guess the mypy authors didn't get that memo either.
@alexsere3061
@alexsere3061 4 ай бұрын
but wait, if I can still use t.Iterable, what does deprecated even mean? why should I stop using it?
@rkdeshdeepak4131
@rkdeshdeepak4131 3 ай бұрын
Deprecated things are removed in the future versions
@fernandocorrales6028
@fernandocorrales6028 4 ай бұрын
I think is something is working well why change it...🤨
@Homeworkbad
@Homeworkbad 4 ай бұрын
I would be surprised if the typing module ever went away purely for backward compatibility reasons. Maybe with Python 4 but not 3.x. Edit: the guidance that it is "deprecated" just means its not the official path but the code should still run until Python decides to break its API.
@BGDMusic
@BGDMusic 4 ай бұрын
for a moment i thought you meant the whole keyboard thing, how you would enter python code
@Indently
@Indently 4 ай бұрын
I use voice to text usually
@Khari99
@Khari99 3 ай бұрын
I’m only finding this out from your video lmao
@manjy5927
@manjy5927 4 ай бұрын
Me using 3.8 at my org, still strong with typing module. I know 3.8 is reaching end of life though, it's good to be annoying migrating
@skejeton
@skejeton 4 ай бұрын
every single popular interpreted language evolves to have a type system
@sadhlife
@sadhlife 4 ай бұрын
I think you're just a month or so early about this, once Python 3.8 is EOL this october, type checkers should start complaining about it as minimum Python version everywhere becomes 3.9
@Indently
@Indently 4 ай бұрын
I will definitely make an update video on that if that's the case
@nullpadshot
@nullpadshot 3 ай бұрын
"You cannot use A, you must use B instead", where A in fact is an alias to B. Seems legit.
@ZacharyHubbellCodes
@ZacharyHubbellCodes 4 ай бұрын
I'm probably sticking with the Typing module until these types don't need an import at all
@s1l3nttt
@s1l3nttt 2 ай бұрын
Nice, so I don't even have to type in python anymore? is this some new fancy auto programming AI?
@jasnarmstrng
@jasnarmstrng 4 ай бұрын
Time to learn Rust.
@Semmelein
@Semmelein 4 ай бұрын
It's especially weird because Python is all about explicit is better than implicit. 😅
@kezif
@kezif 4 ай бұрын
Great change. Never understood why there is distinct list and typing.List and etc. It’s a big skill issue that static typers dont mention about deprication and python devs decided not to do this either.
@mikesmith6838
@mikesmith6838 4 ай бұрын
Makes me wonder if using "external" libraries are worth the risk of the additional dependency. Writing your own libraries has two benefits: first, it can't be depricated on you; and second, it can be as lean as you want. You can't control the bloat of external libraries.
@kc12394
@kc12394 4 ай бұрын
What do you mean external library? Typing is in the standard library that comes with python.
@mikesmith6838
@mikesmith6838 4 ай бұрын
@@kc12394 Makes no difference to me if they are "out-of-the-box" Python or not. Any library you import that you didn't write exposes you to an external dependency; which is a future risk.
@michaelcummings7246
@michaelcummings7246 4 ай бұрын
​@@mikesmith6838yeah next thing you know there will be a new version of python and it'll change something in the language and make me change my code. Guess I better just write my own language instead🤔🙄🤦‍♂️
@dragweb7725
@dragweb7725 4 ай бұрын
​@@mikesmith6838i am pretty much agreeing with you, except that if everyone publish their own version of basic libraries in each project, first you have to "reinvent the wheel" everytime and second PyPI will quickly explode from data overloading
@kc12394
@kc12394 4 ай бұрын
@@mikesmith6838 This is pretty backwards. Makes sense if it's a thing or two here and there but are you going to rewrite your own IO library, TCP server, multithreading library in python every single time just to avoid it being deprecated in the future? By your logic the only way forward is to create your own language, since languages also get deprecated too, look at python 2.
@argbatargbat8645
@argbatargbat8645 4 ай бұрын
I am really tired of using shitty things that then deprecates. Just stuck to vanilla.
@SimonJackson13
@SimonJackson13 4 ай бұрын
An i18n name collision in Oxford dictionary with "typing"? And a half-hearted attempt to use a mechanism to use "collection"?
@subhanumajumder
@subhanumajumder 4 ай бұрын
Well why don't you use pydantic... if I am not wrong, it will handle everything much more elegantly.
@technovikingnik
@technovikingnik 4 ай бұрын
Ok, if I could get slice of a pizza you have made, this would not upset me as much 😊
@k.chriscaldwell4141
@k.chriscaldwell4141 4 ай бұрын
Python’s getting as bad as M$ with the, _”We know better than you. So too bad!”_ attitude.
@cryptodohl
@cryptodohl 4 ай бұрын
First time since I heard about it, since I am learning python lool.. But in my opinion, it is just unnecessary change to go from one module to another which provides identical functionality
@PeterZaitcev
@PeterZaitcev 4 ай бұрын
They should never be removed and even should be un-deprecated. Why? Because List[T] looks like a real class. For context - they also deprecated typing.List, .Dict, and other when they changed typing in the last releases
@replikvltyoutube3727
@replikvltyoutube3727 4 ай бұрын
Implicit language, implicit change.. you wouldn't
@chickenonaraft508
@chickenonaraft508 3 ай бұрын
It’s because they keep axing all the white developers from the Python org
@knghtbrd
@knghtbrd 4 ай бұрын
Shouldn't have been done silently like that. 😠
@4ngelf
@4ngelf 4 ай бұрын
In the end, the typing module, along with type annotations, is just a tool to give linters and type-checkers more information about the code. Deprecated or not, the interpreter will just ignore annotations at runtime. The code will keep the same behavior.
@Indently
@Indently 4 ай бұрын
Well it makes a huge difference if it's deprecated and then removed, because then linters might not recognise it anymore eventually, and Python might give you an ImportError if they remove it.
@lfpdraganov
@lfpdraganov 2 ай бұрын
I dont like this typing : (
@trenixjetix
@trenixjetix 2 ай бұрын
Well, mypy is kinda shitty then. Use another thing. Lol. It's mypy's fault.
@tmr7org
@tmr7org 3 ай бұрын
🎉😂
@bentos117
@bentos117 4 ай бұрын
if you think you need to annotate types in python, then something is wrong
@aleksandarlazov6564
@aleksandarlazov6564 4 ай бұрын
Anyone thinking about cohabitation? That's a no bueno to me
@ЮрийБ-о6е
@ЮрийБ-о6е 4 ай бұрын
mindblowing
@brucerosner3547
@brucerosner3547 4 ай бұрын
So you were happy and productive before learning of the type deprecation. Perhaps ignorance really is bliss. Similar to the James Webb Space Telescope, a great engineering achievement that "deprecated" many commonly believed astronomical theories.
@BohonChina
@BohonChina 4 ай бұрын
python annotations are not forcing python developer to check the data types, other languages like typescript is much better than python in dealing with types.
@joshix833
@joshix833 4 ай бұрын
Typescript has less type safety than python.
@rafapedziwiatr2386
@rafapedziwiatr2386 4 ай бұрын
Do you realize it is done on purpose, so you have more flexible language? Tyle hints/ annotations is just a bad feature, but so many people love it for some reason
@joshix833
@joshix833 4 ай бұрын
@@rafapedziwiatr2386 type safety is important for maintainability
@marcux83
@marcux83 3 ай бұрын
python is an abomination
@gamegamesoumic
@gamegamesoumic 4 ай бұрын
🏳️‍🌈🏳️‍🌈🏳️‍🌈
@chickensoap
@chickensoap 4 ай бұрын
second
@Pacvalham
@Pacvalham 4 ай бұрын
🥈
@nycae
@nycae 4 ай бұрын
Easy solution, don't use type hints and let Python still be Python.
@tochimclaren
@tochimclaren 4 ай бұрын
No... Just no. Type hint is incredibly important even if you are not shipping a library. It's so easy to just put your cursor on a function and see the argument types and attributes the function or class expects.
@AlanBerman
@AlanBerman 4 ай бұрын
This just means yet another reason to pin your code to a specific range of Python versions. I don't think I have ever encountered a programming language that didn't require pinning to a specific version.
@reidprichard
@reidprichard 4 ай бұрын
That seems like a relatively new language feature - for example, is C pinned to a specific version?
Learn Python OOP in under 20 Minutes
18:32
Indently
Рет қаралды 158 М.
5 Useful Python Decorators (ft. Carberra)
14:34
Indently
Рет қаралды 110 М.
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
Une nouvelle voiture pour Noël 🥹
00:28
Nicocapone
Рет қаралды 9 МЛН
Python's 5 Worst Features
19:44
Indently
Рет қаралды 113 М.
Modern Python logging
21:32
mCoding
Рет қаралды 211 М.
Avoid These BAD Practices in Python OOP
24:42
ArjanCodes
Рет қаралды 81 М.
How To Write Better Functions In Python
14:17
Indently
Рет қаралды 55 М.
Python Typing - Type Hints & Annotations
24:46
Tech With Tim
Рет қаралды 117 М.
10 Nooby Mistakes Devs Often Make In Python
24:31
Indently
Рет қаралды 70 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 676 М.
before you code, learn how computers work
7:05
Low Level
Рет қаралды 579 М.
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 245 М.
Pydantic Tutorial • Solving Python's Biggest Problem
11:07
pixegami
Рет қаралды 295 М.
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН