“typing” is getting deprecated in Python

  Рет қаралды 60,461

Indently

Indently

Күн бұрын

In today’s video we’re going to be talking about the typing module getting deprecated in Python, or to be more specific, how most of it is already deprecated since Python 3.9.
Learn more about this change: peps.python.or...
▶ Become job-ready with Python:
www.indently.io
▶ Follow me on Instagram:
/ indentlyreels

Пікірлер: 186
@kudorgyozo
@kudorgyozo 15 күн бұрын
I think typing shouldn't be deprecated because I usually use my hands and a keyboard to type in my code.
@zarifatai
@zarifatai 16 күн бұрын
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 14 күн бұрын
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 13 күн бұрын
Wait, so now we have to use 2 modules for typing?!
@4ngelf
@4ngelf 8 күн бұрын
@ilya238 No, just use what you like. They are aliases to the real module anyway.
@snoupix3332
@snoupix3332 6 күн бұрын
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.
@stonemannerie
@stonemannerie 18 күн бұрын
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 17 күн бұрын
Exactly, it is the job of the tools that analyze type annotations.
@HaganeNoGijutsushi
@HaganeNoGijutsushi 17 күн бұрын
It can give you one for merely importing the typing module.
@be1tube
@be1tube 17 күн бұрын
I found out about this from ruff
@stonemannerie
@stonemannerie 16 күн бұрын
@@HaganeNoGijutsushi but the typing module as a whole is not deprecated only the container types
@naveennamani2
@naveennamani2 14 күн бұрын
Which rule in the ruff does this?
@eddie_dane
@eddie_dane 18 күн бұрын
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 18 күн бұрын
I've never related to a comment so much as this one.
@Oler-yx7xj
@Oler-yx7xj 17 күн бұрын
For lists, dicts and sets, you don't even need to import anything, so there is some good to it
@JordanHaisley
@JordanHaisley 16 күн бұрын
It’s 9 extra chars though!
@dantemendez3743
@dantemendez3743 13 күн бұрын
​@@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 12 күн бұрын
​@@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 18 күн бұрын
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 18 күн бұрын
What is the reason for not annotating as deprecated?
@Masonova1
@Masonova1 18 күн бұрын
​@@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 17 күн бұрын
@@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.
@ladyravendale1
@ladyravendale1 13 күн бұрын
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.
@Carberra
@Carberra 18 күн бұрын
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 18 күн бұрын
I love the term "soft-deprecation" (added in version 3.9)
@GiveMeSomeMeshuggah
@GiveMeSomeMeshuggah 18 күн бұрын
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 10 күн бұрын
@@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.
@graemeholliday3201
@graemeholliday3201 15 күн бұрын
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.
@dirtcrusher95
@dirtcrusher95 18 күн бұрын
Note that not everything in the typing module is being deprecated, for example 'Literal' and 'Optional' are staying (for now).
@GiveMeSomeMeshuggah
@GiveMeSomeMeshuggah 18 күн бұрын
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 17 күн бұрын
Except optional is the same as “type1 | None” so you should just use that instead.
@Marc-ElianBegin
@Marc-ElianBegin 17 күн бұрын
@@soupoverflow except for when you use a string to refer to your type (e.g. Singleton pattern), where afaik you need Optional.
@JackEnneking
@JackEnneking 16 күн бұрын
And NamedTuple
@soupoverflow
@soupoverflow 16 күн бұрын
@@Marc-ElianBegin isn’t it possible to use a forward reference by putting the whole thing in quotes like: “MyType | None”
@LV-1969
@LV-1969 18 күн бұрын
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 17 күн бұрын
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.
@yorailevi6747
@yorailevi6747 18 күн бұрын
Why's callable under collections???
@talideon
@talideon 18 күн бұрын
Because you iterate over collections, one assumes.
@blenderpanzi
@blenderpanzi 18 күн бұрын
​@@talideonWhat does callable have to do with iteration?!
@MagicGonads
@MagicGonads 17 күн бұрын
technically... a callable with bound arguments is a collection because it stores the bound arguments
@blenderpanzi
@blenderpanzi 17 күн бұрын
@@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 17 күн бұрын
@@blenderpanzi collections do not map indices to values in general
@dipeshsamrawat7957
@dipeshsamrawat7957 18 күн бұрын
We're obsessed with typing module 🥺❤
@evlezzz
@evlezzz 18 күн бұрын
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 18 күн бұрын
whats wrong about callable being in the abc?
@evlezzz
@evlezzz 18 күн бұрын
@@kezif Nothing is wrong with abc. Why Callable is a collection?
@Indently
@Indently 18 күн бұрын
I'm also curious to hear why Callable is a collection ahah
@michaelcummings7246
@michaelcummings7246 18 күн бұрын
​@@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 17 күн бұрын
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.
@damymetzke514
@damymetzke514 18 күн бұрын
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.
@GiancarloMattia
@GiancarloMattia 18 күн бұрын
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 18 күн бұрын
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.
@thisoldproperty
@thisoldproperty 18 күн бұрын
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 18 күн бұрын
It just feels so silent and sneaky, even if they gave us 5 years to prepare for this before they might remove it.
@nowster
@nowster 18 күн бұрын
Also built in types (list, tuple, dict) can be used for type annotation, instead of typing.List, etc.
@aaronvegoda1907
@aaronvegoda1907 17 күн бұрын
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
@IManu96I
@IManu96I 18 күн бұрын
Thanks for the video! Most of the linters such as Ruff were warning about this deprecation long time ago
@Indently
@Indently 18 күн бұрын
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 17 күн бұрын
but pylint don't do that...
@AlexandreJasmin
@AlexandreJasmin 14 күн бұрын
What’s that lint called in ruff?
@MishaTavkhelidze
@MishaTavkhelidze 18 күн бұрын
I noticed something fishy with this some time ago but was too lazy to investigate. Thank you!
@bigfoot47
@bigfoot47 12 күн бұрын
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"
@laylaxoxo5719
@laylaxoxo5719 18 күн бұрын
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.
@wadecurry938
@wadecurry938 18 күн бұрын
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 17 күн бұрын
Imo just read the documentation.
@Homeworkbad
@Homeworkbad 14 күн бұрын
The PEP considered adding deprecation warnings for this but decided against it as those warnings would have a negative impact on runtime performance.
@MarkusLobedann
@MarkusLobedann 17 күн бұрын
Ever used the 'ruff' linter? It warns about many defacto deprecations like to use 'dict' instead of 'Dict' from the typing Module.
@Indently
@Indently 17 күн бұрын
I haven't, but a few comments suggested it so I will try it
@BruceDuncan
@BruceDuncan 18 күн бұрын
Sounds like you want to make a PR for mypy...
@spdlqj011
@spdlqj011 18 күн бұрын
I just use list[str] 😅
@Sakiut25-1804
@Sakiut25-1804 13 күн бұрын
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
@MichalPlichta
@MichalPlichta 17 күн бұрын
Im using python every day since 12 years... This is just fresh news to me...
@CristianGarcia
@CristianGarcia 17 күн бұрын
What happens with Any?
@PeterZaitcev
@PeterZaitcev 11 күн бұрын
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
@pavfrang
@pavfrang 17 күн бұрын
Perhaps, in the future we expect a TypePython language that forces typing, which will be the equivalent of TypeScript/JavaScript. :)
@vlc-cosplayer
@vlc-cosplayer Күн бұрын
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. 💀
@victorsago
@victorsago 17 күн бұрын
This is news to me! And I agree with you: typing is such a convenient module for, well, typing. :)
@RealSoulRave
@RealSoulRave 14 күн бұрын
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!
@Hofer2304
@Hofer2304 14 күн бұрын
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?
@qbert8695
@qbert8695 16 күн бұрын
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.
@bluemaxwastaken
@bluemaxwastaken 18 күн бұрын
Congrats on 200k!! You deserve it.
@tek1in775
@tek1in775 14 күн бұрын
I haven't really seen this question in any previous videos, but what code editor to you use?
@Homeworkbad
@Homeworkbad 14 күн бұрын
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.
@ilonachan
@ilonachan 6 күн бұрын
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!
@scottmiller2591
@scottmiller2591 17 күн бұрын
SOP for all deprecations. Python is complicated, and it is hard to keep up with minutia like this. Thanks for pointing the deprecation out.
@theViceth
@theViceth 18 күн бұрын
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 18 күн бұрын
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.
@bibekjha8129
@bibekjha8129 17 күн бұрын
I just used typing callable now I learnt this from this video.
@CaioAguida
@CaioAguida 5 күн бұрын
I never understood why you'd have to import a module for getting typing in the first place.
@MrMoon-hy6pn
@MrMoon-hy6pn 7 сағат бұрын
‘typing’ now ‘collections.abc’ just creates a bunch of classes that aren’t built into python. You can use type annotations without either.
@Semmelein
@Semmelein 12 күн бұрын
It's especially weird because Python is all about explicit is better than implicit. 😅
@hugoburton5222
@hugoburton5222 16 күн бұрын
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?
@maleldil1
@maleldil1 17 күн бұрын
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 15 күн бұрын
+1 for pyupgrade. It really helps with replacing older style type hints as well as doing other useful things.
@samhughes1747
@samhughes1747 15 күн бұрын
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.
@jerril42
@jerril42 18 күн бұрын
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 18 күн бұрын
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😉😂
@sadhlife
@sadhlife 14 күн бұрын
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 14 күн бұрын
I will definitely make an update video on that if that's the case
@CppExpedition
@CppExpedition 15 күн бұрын
Typing was the right module name. I would continue using it
@thejimmylin
@thejimmylin 13 күн бұрын
How do you replace `typing.TypedDict`?
@alexsere3061
@alexsere3061 17 күн бұрын
but wait, if I can still use t.Iterable, what does deprecated even mean? why should I stop using it?
@___Q___
@___Q___ 17 күн бұрын
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 17 күн бұрын
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
@shaunread5248
@shaunread5248 18 күн бұрын
How have you got a responsive mypy popup in pycharm? 😍
@Indently
@Indently 18 күн бұрын
If you check the plugin store it's there!
@bryandata6658
@bryandata6658 16 күн бұрын
Thanks - I had missed that one as well.
@farzadmf
@farzadmf 17 күн бұрын
Wow, didn't know that! Thanks for the video!
@marckiezeender
@marckiezeender 17 күн бұрын
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
@manjy5927
@manjy5927 17 күн бұрын
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
@4ngelf
@4ngelf 17 күн бұрын
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 17 күн бұрын
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.
@argbatargbat8645
@argbatargbat8645 14 күн бұрын
I am really tired of using shitty things that then deprecates. Just stuck to vanilla.
@ZacharyHubbellCodes
@ZacharyHubbellCodes 17 күн бұрын
I'm probably sticking with the Typing module until these types don't need an import at all
@fernandocorrales6028
@fernandocorrales6028 18 күн бұрын
I think is something is working well why change it...🤨
@skejeton
@skejeton 17 күн бұрын
every single popular interpreted language evolves to have a type system
@jasnarmstrng
@jasnarmstrng 17 күн бұрын
Time to learn Rust.
@SimonJackson13
@SimonJackson13 18 күн бұрын
An i18n name collision in Oxford dictionary with "typing"? And a half-hearted attempt to use a mechanism to use "collection"?
@bentos117
@bentos117 17 күн бұрын
if you think you need to annotate types in python, then something is wrong
@mikesmith6838
@mikesmith6838 18 күн бұрын
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 18 күн бұрын
What do you mean external library? Typing is in the standard library that comes with python.
@mikesmith6838
@mikesmith6838 18 күн бұрын
@@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 18 күн бұрын
​@@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 17 күн бұрын
​@@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 17 күн бұрын
@@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.
@user-jq5gr8gh3p
@user-jq5gr8gh3p 18 күн бұрын
Well why don't you use pydantic... if I am not wrong, it will handle everything much more elegantly.
@kezif
@kezif 18 күн бұрын
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.
@BGDMusic
@BGDMusic 17 күн бұрын
for a moment i thought you meant the whole keyboard thing, how you would enter python code
@Indently
@Indently 17 күн бұрын
I use voice to text usually
@k.chriscaldwell4141
@k.chriscaldwell4141 15 күн бұрын
Python’s getting as bad as M$ with the, _”We know better than you. So too bad!”_ attitude.
@fedang
@fedang 17 күн бұрын
Nice video, didn't know that
@cryptodohl
@cryptodohl 18 күн бұрын
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
@technovikingnik
@technovikingnik 18 күн бұрын
Ok, if I could get slice of a pizza you have made, this would not upset me as much 😊
@knghtbrd
@knghtbrd 18 күн бұрын
Shouldn't have been done silently like that. 😠
@replikvltyoutube3727
@replikvltyoutube3727 18 күн бұрын
Implicit language, implicit change.. you wouldn't
@rafapedziwiatr2386
@rafapedziwiatr2386 16 күн бұрын
I don't understand why so many people uses type hints. It is just a bad language feature. And in most cases makes code less maintenable
@Hofer2304
@Hofer2304 14 күн бұрын
Types are for the programmer. If there is a type error in your program, you most likely made a logical error.
@angeloj.willems4362
@angeloj.willems4362 17 күн бұрын
If you didn't notice since v3. 9, it means you never use it. Which validates their decision.
@dragweb7725
@dragweb7725 17 күн бұрын
hey man, you're talking to an obsessive typer, i can bet by this comment you have not watched many of his videos
@user-co9rc1kp7p
@user-co9rc1kp7p 18 күн бұрын
mindblowing
@aleksandarlazov6564
@aleksandarlazov6564 18 күн бұрын
Anyone thinking about cohabitation? That's a no bueno to me
@AlanBerman
@AlanBerman 18 күн бұрын
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 17 күн бұрын
That seems like a relatively new language feature - for example, is C pinned to a specific version?
@brucerosner3547
@brucerosner3547 17 күн бұрын
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.
@nycae
@nycae 18 күн бұрын
Easy solution, don't use type hints and let Python still be Python.
@tochimclaren
@tochimclaren 18 күн бұрын
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.
@BohonChina
@BohonChina 18 күн бұрын
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 17 күн бұрын
Typescript has less type safety than python.
@rafapedziwiatr2386
@rafapedziwiatr2386 16 күн бұрын
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 16 күн бұрын
@@rafapedziwiatr2386 type safety is important for maintainability
@gamegamesoumic
@gamegamesoumic 14 күн бұрын
🏳️‍🌈🏳️‍🌈🏳️‍🌈
@chickensoap
@chickensoap 18 күн бұрын
second
@Pacvalham
@Pacvalham 18 күн бұрын
🥈
@ustrucx
@ustrucx 18 күн бұрын
And these are some of the reasons companies should not use these sort of languages for anything.
@At-Dawn-We-Ride
@At-Dawn-We-Ride 18 күн бұрын
Ah, a wild troll has appeared. Let's be vewwy, vewwy quiet, so we don't scare it away.
@ustrucx
@ustrucx 17 күн бұрын
@@At-Dawn-We-Ride Very eloquent.
@adrianhenle
@adrianhenle 16 күн бұрын
Or you could just stop pretending Python has types at all and use none of this. If you want types, use a typed language.
@scripternipter10
@scripternipter10 18 күн бұрын
first
@Pacvalham
@Pacvalham 18 күн бұрын
🥇
@josho225
@josho225 17 күн бұрын
i use typing all the time, had no idea!!
@AlBol-if5ll
@AlBol-if5ll 17 күн бұрын
why not collections.undeprecated.new.abcdefghijklmn ?
Learn Python OOP in under 20 Minutes
18:32
Indently
Рет қаралды 26 М.
5 Good Python Habits
17:35
Indently
Рет қаралды 525 М.
An Unknown Ending💪
00:49
ISSEI / いっせい
Рет қаралды 14 МЛН
The CUTEST flower girl on YouTube (2019-2024)
00:10
Hungry FAM
Рет қаралды 45 МЛН
Пришёл к другу на ночёвку 😂
01:00
Cadrol&Fatich
Рет қаралды 7 МЛН
I Went To DEFCON!
16:25
ThePrimeagen
Рет қаралды 188 М.
Python 3.13's new REPL is AMAZING
10:21
Carberra
Рет қаралды 43 М.
The Most Valuable File Format You've Never Heard Of
15:33
Acerola
Рет қаралды 396 М.
The unexpected probability result confusing everyone
17:24
Stand-up Maths
Рет қаралды 415 М.
How Much FASTER Is Python 3.13 Without the GIL?
10:00
ArjanCodes
Рет қаралды 154 М.
World's 1st Coding Monitor
11:10
Alex Ziskind
Рет қаралды 297 М.
5 Uncommon Python Features I Love
15:09
Indently
Рет қаралды 151 М.
5 Useful Python Decorators (ft. Carberra)
14:34
Indently
Рет қаралды 99 М.
Linus On LLMs For Coding
17:06
ThePrimeTime
Рет қаралды 249 М.
Enums considered harmful
9:23
Matt Pocock
Рет қаралды 205 М.
An Unknown Ending💪
00:49
ISSEI / いっせい
Рет қаралды 14 МЛН