| commit | aaaa807797b9a4d8a60de4bd7ea594d77499744c | [log] [tgz] |
|---|---|---|
| author | Jelle Zijlstra <jelle.zijlstra@gmail.com> | Thu Jun 01 16:56:59 2023 -0700 |
| committer | Jelle Zijlstra <jelle.zijlstra@gmail.com> | Thu Jun 01 16:56:59 2023 -0700 |
| tree | a6e7b1c131f121060307a0e8b598bfde7a664b7a | |
| parent | 68ee133748aec8c13c91c8c7440c8a970931acaf [diff] |
Fixup changelog
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.