| commit | afabbbdd6df2dfc76b06f91b3e1feffe7d046dbc | [log] [tgz] |
|---|---|---|
| author | Alex Waygood <Alex.Waygood@Gmail.com> | Mon Jun 05 10:48:01 2023 +0100 |
| committer | GitHub <noreply@github.com> | Mon Jun 05 11:48:01 2023 +0200 |
| tree | feada74d5c6777f786b235f6b9ff4ab430eafba2 | |
| parent | ed09c9f4b8222a79810ec89c02ba50e72ec59604 [diff] |
Allow Protocols to inherit from typing_extensions.Buffer or collections.abc.Buffer (#220)
The typing_extensions module serves two related purposes:
typing.TypeGuard is new in Python 3.10, but typing_extensions allows users on previous Python versions to use it too.typing module.typing_extensions uses Semantic Versioning. The major version will be incremented only for backwards-incompatible changes. Therefore, it's safe to depend on typing_extensions like this: typing_extensions >=x.y, <(x+1), where x.y is the first version that includes all features you need.
typing_extensions supports Python versions 3.7 and higher.
See the documentation for a complete listing of module contents.
To run tests, navigate into the src/ directory and run test_typing_extensions.py.