You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PEP-0544 introduce typing.Protocol which allows defining an interface that can be validated on runtime.
This is currently available via a non-official extension to the typing module called typing-extensions.
Although it seems similar to zope functionality, it is very different:
It does not verify the arguments of the methods. Not that the implementation has the correct number of arguments and not the arguments' typing.
Their implementation meant for static type checking.
Can zope utilize the already existing validation implementation to also validate Protocols on runtime.
This will allow a developer to write an interface once (via a Protocol) that could be checked statically using the existing Protocol implementation and also dynamically using zope's implementation.
I'm not sure how I feel about protocols where the implementers don't have to say what interfaces they support. It matches duck typing, but it is hard for tools that want to go find implementations (IDEs, a registry, etc.)
Still, in some mythical future zope.interface, sitting atop that machinery would indeed give (2) above, which is a big win for those buying into mypy or PyCharm.
PEP-0544 introduce
typing.Protocol
which allows defining an interface that can be validated on runtime.This is currently available via a non-official extension to the
typing
module called typing-extensions.Although it seems similar to zope functionality, it is very different:
Can zope utilize the already existing validation implementation to also validate Protocols on runtime.
This will allow a developer to write an interface once (via a Protocol) that could be checked statically using the existing Protocol implementation and also dynamically using zope's implementation.
See more information on this StackOverflow thread: https://stackoverflow.com/questions/43830996/verify-that-an-unknown-module-object-is-obliged-to-a-specific-interface-python/55131689
The text was updated successfully, but these errors were encountered: