| commit | 68ee133748aec8c13c91c8c7440c8a970931acaf | [log] [tgz] |
|---|---|---|
| author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | Thu Jun 01 16:56:16 2023 -0700 |
| committer | Jelle Zijlstra <jelle.zijlstra@gmail.com> | Thu Jun 01 16:56:16 2023 -0700 |
| tree | 21818ca497f4b04e7bd70721609cc9910206030e | |
| parent | f9d21b1aaaed1e0eacd12acda1c6d665a87a25e8 [diff] | |
| parent | c57333b77603298e2d79fdaf7632e09e40d11f54 [diff] |
Merge branch '463'
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.